Vegard Stenstad
Vegard Stenstad
So I was thinking a bit more about this one, I think the only way this would be doable without excessive amounts of processing to check if the list has...
My plan was to actually track changes on the list so we never have to iterate over it. Perhaps the simplest solution to this would be to just provide a...
One thing I have been thinking about but don't have a solution for is if we make this an extension and not it's own class how do we track which...
How about we instead do something like the `this.SpawnNetworkNode`, we implement a generic wrapper for ICollection as I suggested but hide it behind a `this.CreateNetworkedList` in theory you wouldn't even...
Ok so this is the best solution I could come up with. The user can do something like this ```csharp [MDReplicated] protected List MyList; ``` When we pickup the MDReplicated...
So after discussion on discord this is the solution I think I would go for, I will probably start implementation tomorrow. So if anyone got objections or suggestions please feel...
> This sounds like a good starting point for container replication. I'm interested to see how ConvertFromValue will be used exactly but I won't have time to discuss before you...
So I have more or less finished the implementation. I need to make some minor adjustment to our buffer for clocked values, which also now is used to buffer for...
I now more or less finished the replicated list on my branch, I just got a bit more to do on the example and then I will add replicated dictionary...
> Regarding sorting, I think the best approach would be to manually implement a sort algorithm and we record each change that happens to the list? Sucks having to re-implement...