Exemplo n.º 1
0
    void StartLevel()
    {
        AlertModeManager.SwitchToAlertMode(false);
        GameObject go = GameObject.Find("_PlayerStart");

        if (go != null)
        {
            InteractingPlayer.SetPosition(go.transform.position, go.transform.rotation);
            StealthPlayerCamera.ResetToFarPosition();
        }
        state = eGameManagerState.level;
        if (LEVEL_START_EVENT != null)
        {
            LEVEL_START_EVENT();
        }
    }
Exemplo n.º 2
0
 public override void Action()
 {
     AlertModeManager.SwitchToAlertMode();
 }