コード例 #1
0
ファイル: LoadingVideo.cs プロジェクト: Racaoma/mesmerized
 void OnDestroy()
 {
     if (Instance == this)
     {
         Instance = null;
     }
 }
コード例 #2
0
ファイル: LoadingVideo.cs プロジェクト: Racaoma/mesmerized
 void Awake()
 {
     if (Instance != null)
     {
         DestroyImmediate(this.gameObject);
     }
     else
     {
         Instance = this;
     }
 }
コード例 #3
0
 private void OnLoadingVideo(object sender, Forms.EventHandlers.LoadingVideoEventArgs e)
 {
     LoadingVideo?.Invoke(this, e);
 }