Exemplo n.º 1
0
 public override void Awake()
 {
     if (Instance == null)
     {
         Instance = this;
     }
     else
     {
         throw new System.Exception("Can't have multiple instance of the same script.");
     }
 }
Exemplo n.º 2
0
 public override void End()
 {
     Instance = null;
 }