Exemple #1
0
 void OnPlayStoryEndingMovie()
 {
     storyView = PlayStory(
         GlobalDefine.TUTORIAL_STORY03,
         () =>
     {
         TutorialFSM.Instance.SendEvent_FinishStory();
     });
     storyView.EnableLoadingMask();
 }
Exemple #2
0
 void OnPlayStoryOpeningMovie()
 {
     storyView = PlayStory(
         GlobalDefine.TUTORIAL_STORY02,
         () =>
     {
         SendStep(
             101,
             () =>
         {
             TutorialFSM.Instance.SendEvent_FinishStory();
         });
     });
     storyView.EnableLoadingMask();
     storyView.DisableReturnableBGM();
 }