예제 #1
0
파일: GameManager.cs 프로젝트: Shurid16/Elf
    public void StartGame()
    {
        State = GameState.Playing;
        LevelManager.Instance.StartGame();

        AdsController.HideAds();
    }
예제 #2
0
파일: GameManager.cs 프로젝트: Shurid16/Elf
    //called by MenuManager
    public void GotoCheckPoint()
    {
        State = GameState.Playing;

        ResetCheckPoint();
        LevelManager.Instance.GotoCheckPoint();

        Instantiate(FadeInEffect);

        AdsController.HideAds();
    }