Ejemplo n.º 1
0
 public void StartGame()
 {
     this.inGame = true;
     Camera_Animation.Instance.SetCameraState(1);
     Enemy_Chase.SetTargetPlayer(this.playerObject);
     EnemySpawner.Instance.StartGame();
     Player_Move.StartGame();
     SoundController.Instance.PlayBGM("Battle");
 }
Ejemplo n.º 2
0
 public static void SetTargetPlayer(GameObject obj)
 {
     targetPlayer = obj;
     Enemy_Chase.PlayerPositionUpdate();
 }