예제 #1
0
 internal void SetComponentSyncSettings(int index, ComponentSyncSettings settings) {
     Assert.IsNotNull(settings);
     Assert.IsTrue(index >= 0 && index<SYNC_COUNT);
     m_componentSyncSettings[index] = settings;
 }
예제 #2
0
 internal ComponentSyncSettings(ComponentSyncSettings other) {
     this.CanCreate = other.CanCreate;
     this.CanUpdate = other.CanUpdate;
 }