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
- Mouse inputs cannot be inputted when searching the Shortcuts Menu by type "Shortcut"
- "Debug Assertion Failed!" error when launching Windows Dedicated Server Player with Script Debugging enabled
- [Cinematic Studio][3D HDRP] Shader warnings thrown in the Console window when creating a new project with Cinematic Studio template
- Autoplay is triggered on Audio Assets when changing Asset Bundle tags
- Inspector Asset Bundle section has no indication for Variants, AssetBundle is written without a space, and Variant dropdown menu is available without setting the Asset Bundle first
Add comment