Exemple #1
0
 // Use this for initialization
 public void Awake()
 {
     Debug.Log("Manager");
     if (instance == null)
     {
         instance = this;
     }
     else if (instance != this)
     {
         Destroy(gameObject);
     }
     DontDestroyOnLoad(gameObject);
     generatorScript = GetComponent <TailGenerator>();
     generatorScript.Start();
 }