コード例 #1
0
ファイル: TwitterAPI.cs プロジェクト: HelrenPDM/FaderVR
 // Use this for initialization
 void Awake()
 {
     if (instance == null)
     {
         instance = this;
     }
     else
     {
         Debug.LogError ("More then one instance of TwitterAPI: " + this.transform.name);
     }
 }
コード例 #2
0
ファイル: TwitterAPI.cs プロジェクト: HelrenPDM/FaderVR
 public void ResetInstance()
 {
     instance = null;
 }