示例#1
0
 public void PlayStartAnimation(bool gameStart)
 {
     if (loopResetDialog == null)
     {
         loopResetDialog = this.FindChildObject("LoopEndDialog").GetComponent <UILoopResetDialog>();
     }
     loopResetDialog.PlayStartAnimation(gameStart);
 }
示例#2
0
 public void CallLoopResetDialogSceneStart()
 {
     if (loopResetDialog == null)
     {
         loopResetDialog = this.FindChildObject("LoopEndDialog").GetComponent <UILoopResetDialog>();
     }
     loopResetDialog.SceneLoaded();
 }
示例#3
0
 void Start()
 {
     loopResetDialog    = this.FindChildObject("LoopEndDialog").GetComponent <UILoopResetDialog>();
     worldSpaceCanvas   = this.FindChildObject("WorldSpaceCanvas");
     titleTextContainer = this.FindChildObject("TitleTextContainer");
 }