Esempio n. 1
0
 void OnTriggerEnter(Collider other)
 {
     if (other.tag == "Player")
     {
         if (flagPrereq == "" || RPG.GetBool(flagPrereq))  // the prequisit is done
         {
             RPG.SetFlag(flagName, flagValue);
             Destroy(this);
         }
     }
 }
Esempio n. 2
0
 void OnTriggerEnter(Collider other)
 {
     Debug.Log("trigger:" + other.name + " " + other.tag);
     if (other.tag == "Player")
     {
         if (flagPrereq == "" || RPG.GetBool(flagPrereq))  // the prequisit is done
         {
             // add quest to the main RPG & this destroy myself to stop muliple triggers
             GameObject rpg = GameObject.FindGameObjectWithTag("GameController");
             // because unity will not allow add component by name
             // we now have an existing component attached & use its type to get the correct version
             // string=>Type never works for javascript behaviours
             rpg.AddComponent(questComponent.GetType()); // add this component to the quest system
             Destroy(this);
         }
     }
 }