コード例 #1
0
 private void Awake()
 {
     if (instance != null && instance != this)
     {
         Destroy(gameObject);
         return;
     }
     else
     {
         instance = this;
     }
 }
コード例 #2
0
ファイル: UIAlertManager.cs プロジェクト: ShipuW/unity-study
 //
 private void Awake()
 {
     //
     s_Instance = this;
 }