void Awake()
 {
     if (instance == null)
     {
         instance = this;
     }
     FindChildrenControl <Button>();
 }
Exemple #2
0
 // Start is called before the first frame update
 void Start()
 {
     controller = GetComponent <CharacterController>();
     ui         = GameObject.Find("Canvas").GetComponent <UI_Management>();
 }