Ejemplo n.º 1
0
           public override void start()
          
        {
            GageValidate.SaveVP();


                                //次のシナリオに進む処理
                this.gameManager.nextOrder();

              
        }
Ejemplo n.º 2
0
 //8割超えてるか否かでゴールかゲームオーバーか判定
    public override void start()
   
 {
     if (GageValidate.GetVPAndResult())
     {
         string target = "goal";
         this.switchScene(target);
     }
     else
     {
         string target = "gameover";
         this.switchScene(target);
     }
 }