コード例 #1
0
 private void BeforeDestroying()
 {
     if (unitySingletons != null)
     {
         GameObject.Destroy(unitySingletons);
     }
     _singletonFactory.Destroy();
 }
コード例 #2
0
 private void BeforeDestroying()
 {
     if (unitySingletons != null)
     {
         if (!Application.isPlaying)
         {
             GameObject.DestroyImmediate(unitySingletons);
         }
         else
         {
             GameObject.Destroy(unitySingletons);
         }
     }
     _singletonFactory.Destroy();
 }
コード例 #3
0
ファイル: GameController.cs プロジェクト: zedeechen/MyMudTest
 public void CreateNewGame()
 {
     SingletonFactory <UserInfo> .Destroy();
 }