コード例 #1
0
ファイル: GUICore.cs プロジェクト: zer0Kerbal/SimpleLogistics
 public void OnDestroy()
 {
     if (_instance == this)
     {
         _instance = null;
     }
 }
コード例 #2
0
ファイル: GUICore.cs プロジェクト: zer0Kerbal/SimpleLogistics
 public void Awake()
 {
     if (_instance != null)
     {
         Destroy(this);
         return;
     }
     _instance = this;
 }