コード例 #1
0
ファイル: AuidoSingleton.cs プロジェクト: kontroman/OLD-45
 public void Update()
 {
     if (this != _instance)
     {
         _instance = null;
     }
 }
コード例 #2
0
ファイル: AuidoSingleton.cs プロジェクト: kontroman/OLD-45
 void Awake()
 {
     if (_instance == null)
     {
         _instance = this;
         DontDestroyOnLoad(this);
     }
     else
     {
         if (this != _instance)
         {
             Destroy(this.gameObject);
         }
     }
 }