Exemplo n.º 1
0
 public void LoadFromWiredObject(WiredLoader.WiredLoaderObject loadedData)
 {
     this.isOneUser = loadedData.GetBooleanWithIndex(0);
     this.userName = loadedData.StringSettings[1];
 }
Exemplo n.º 2
0
        public void LoadFromWiredObject(WiredLoader.WiredLoaderObject loadedData)
        {
            this.originalItemLocation = loadedData.originalPositionList;
            this.items = loadedData.items;
            checkState = loadedData.GetBooleanWithIndex(0);
            checkDirection = loadedData.GetBooleanWithIndex(1);
            checkPosition = loadedData.GetBooleanWithIndex(2);

            AttatchListenersToItems();
        }
Exemplo n.º 3
0
 public void LoadFromWiredObject(WiredLoader.WiredLoaderObject loadedData)
 {
     this.triggerMessage = loadedData.StringSettings[0];
     this.IsOwnerOnly = loadedData.GetBooleanWithIndex(1);
 }
Exemplo n.º 4
0
 public void LoadFromWiredObject(WiredLoader.WiredLoaderObject loadedData)
 {
     this.items = loadedData.items;
     allItems = loadedData.GetBooleanWithIndex(0);
     AttatchListenersToItems();
 }