예제 #1
0
 void Awake()
 {
     if (instance != null)
     {
         Debug.LogWarning("Multiple instance of same Singleton : GameManager");
     }
     instance = this;
 }
예제 #2
0
 void Awake()
 {
     instance = this;
 }