Esempio n. 1
0
        void Awake()
        {
            this.spawner = this.GetComponent <Spawner>();

            if (this.Groups == null)
            {
                this.Groups = this.GetComponent <GameObjectGroup>();
            }
        }
Esempio n. 2
0
 public RemoveFromGroup(ITaskIdBuilder id, GameObjectGroup groups)
     : base(id)
 {
     this.groups = groups;
 }
Esempio n. 3
0
 public AddToGroup(ITaskIdBuilder id, GameObjectGroup groups)
     : base(id)
 {
     this.groups = groups;
 }
Esempio n. 4
0
 void Awake()
 {
     this.groups    = this.GetComponent <GameObjectGroup>();
     this.peerGroup = this.GetComponent <PeerGroup>();
 }