Search Issue Tracker
Not Reproducible
Votes
1
Found in
Issue ID
754364
Regression
No
operations not synced for SyncList on base class
Operations not synced to client for SyncList on base class, when invoked from a derived class.
exmaple:
public class Foo : NetworkBehaviour
{
public SyncListInt m_SyncListInt = new SyncListInt();
}
public class Bar : Foo {
}
...
Foo foo = SpawnAFoo();
Bar bar = SpawnABar();
...
foo.m_SyncListInt.Add(1);
bar.m_SyncListInt.Add(1);
The remote version of foo gets the update list.
The remote version of bar does not get the updated list.
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- “ArgumentOutOfRangeException“ error when selecting 'TMP_InputField' content using keyboard in WebGL build
- Spot Light with 'Box' Shape stops working when it collides with Mesh
- Accepting Asset Store EULA endless loop in Package Manager window
- “InvalidOperationException: Sequence contains no matching element“ error when reenabling a custom Debug Draw Mode
- Prefab that contains a layout group is marked as changed by the Editor when opened
Add comment