1
0
mirror of https://github.com/cwchristerw/jump-game synced 2024-09-19 01:59:34 +00:00

Fixed start game

This commit is contained in:
Jamma 2020-02-26 14:05:41 +02:00
parent b70ef95042
commit 2a2daa1883
2 changed files with 2 additions and 2 deletions

View File

@ -15,6 +15,6 @@ public class ChangeScene : MonoBehaviour
private IEnumerator ChangeSceneToGame() private IEnumerator ChangeSceneToGame()
{ {
yield return new WaitForSeconds(5); yield return new WaitForSeconds(5);
SceneManager.LoadScene(3); SceneManager.LoadScene(2);
} }
} }

View File

@ -63,7 +63,7 @@ public class Menu_Buttons : MonoBehaviour
} }
public void StartGame() public void StartGame()
{ {
SceneManager.LoadScene(2); SceneManager.LoadScene(1);
} }
public void ExitGame() public void ExitGame()