コード例 #1
0
ファイル: PSManager.cs プロジェクト: cobrauf/PaperToss
 void Awake()
 {
     if (instance == null)
     {
         instance = this;
     }
     else if (instance != this)
     {
         Destroy(gameObject);
     }
     DontDestroyOnLoad(gameObject);
 }
コード例 #2
0
 private void Awake()
 {
     Instance = this;
 }