예제 #1
0
 void Awake()
 {
     if (Instance == null)
     {
         Instance = this;
         DontDestroyOnLoad(gameObject);
     }
     else
     {
         Destroy(gameObject);
     }
 }
예제 #2
0
 void Awake()
 {
     if (instanceOf == null)
     {
         instanceOf = this;
         DontDestroyOnLoad(gameObject);
     }
     else
     {
         Destroy(this);
         return;
     }
 }