Ejemplo n.º 1
0
    void Start()
    {
        theGameMaster     = GameMasterTutorial.S_GameMaster;
        theScoreManager   = ScoreManagerTutorial.S_ScoreManager;
        theStationManager = StationManagerTutorial.S_StationManager;
        theUIManager      = UIManagerTutorial.S_UIManager;

        loopBounds = Vector3.forward * loopRange;
    }
Ejemplo n.º 2
0
 void Awake()
 {
     if (S_StationManager == null)
     {
         S_StationManager = this;
     }
     else
     {
         Destroy(gameObject);
     }
 }
Ejemplo n.º 3
0
    void Start()
    {
        theStationManager = StationManagerTutorial.S_StationManager;
        theScoreManager = ScoreManagerTutorial.S_ScoreManager;
        thePowerControl = PowerControlTutorial.S_PowerControl;
        theUIManager = UIManagerTutorial.S_UIManager;

        thePowerControl.TogglePowerLock(true);
        theStationManager.StationUpdate();
        thePowerControl.SetSpeedLimit(initialSpeedLimit);

        StartGameSection();
    }
Ejemplo n.º 4
0
 void Start()
 {
     theGameMaster     = GameMasterTutorial.S_GameMaster;
     theStationManager = StationManagerTutorial.S_StationManager;
     thePowerControl   = PowerControlTutorial.S_PowerControl;
 }