コード例 #1
0
ファイル: AIController.cs プロジェクト: weedle/TSSE2016
 /*
  *
  */
 void Update()
 {
     ship.setText(ship.getName() +
                  ": " + GetComponent <ShipController>().
                  getState().ToString().Substring(0, 1));
     if (!ship.getActive())
     {
         return;
     }
     handleState();
     getNextState();
 }
コード例 #2
0
 public string getName()
 {
     return(ship.getName());
 }