コード例 #1
0
 new void Start()
 {
     base.Start();
     if (GameControllerCommon.instance != null && GameControllerCommon.instance is GameControllerArena)
     {
         gca = (GameControllerArena)GameControllerCommon.instance;
     }
 }
コード例 #2
0
 void Start()
 {
     gameController = GameControllerCommon.instance as GameControllerArena;
     gameController.scoreboard.Callback += OnScoreChange;
 }
コード例 #3
0
 // Start is called before the first frame update
 void Start()
 {
     gc = (GameControllerArena)GameControllerCommon.instance;
 }
コード例 #4
0
ファイル: ArenaUI.cs プロジェクト: ImranBepari97/Fluid3D
 // Start is called before the first frame update
 void Start()
 {
     gc         = (GameControllerArena)GameControllerCommon.instance;
     timer.text = returnTimerAsText(gc.timeLeftSeconds);
 }