コード例 #1
0
 public static void Hide()
 {
     if (instance != null)
     {
         UiShowHide.HideAll(instance.transform);
         Destroy(instance.gameObject, 1);
         instance = null;
     }
 }
コード例 #2
0
ファイル: GameState.cs プロジェクト: parsehgames/shetab
 //  Will be called before destroying this object. return time of closing animation
 public virtual float PreClose()
 {
     return(UiShowHide.HideAll(transform));
 }