Is this not possible? It throws "Synclist not initalized" errors although both OnStartServer methods are called properly.
SyncList in parent classes
Code (CSharp):
- public class ComponentManager : NetworkBehaviour {
- public SyncListBool componentState = new SyncListBool();
- public override void OnStartServer() {
- //...do stuff with the List, get "SyncList not initialized" error
- base.OnStartServer();
- }
- }
- public void Ship : ComponentManager {
- public override void OnStartServer() {...