Ejemplo n.º 1
0
 private void SkipStart()
 {
     this.tutorialUI.SetSkipButton(true, delegate
     {
         TutorialCommandSkip tutorialCommandSkip = new TutorialCommandSkip(this.scriptEngine, this.tutorialUI, this.controlToGame);
         tutorialCommandSkip.SkipCommand(TutorialCommandSkip.SkipMode.NORMAL_SKIP);
     });
 }
Ejemplo n.º 2
0
    private void SkipBattle()
    {
        TutorialCommandSkip tutorialCommandSkip = new TutorialCommandSkip(this.scriptEngine, this.tutorialUI, this.controlToGame);

        tutorialCommandSkip.SkipCommand(TutorialCommandSkip.SkipMode.BATTLE_SKIP);
        RestrictionInput.EndLoad();
        this.controlToGame.SetBgm("BGM/bgm_303/sound", true, 0.5f);
        this.tutorialUI.Fade.StartFade(TutorialFade.FadeType.BLACK, false, 0.5f, null);
    }