Merge pull request #6 from TheJamma/lol

Fixed start game
This commit is contained in:
Christer Warén 2020-02-26 14:10:16 +02:00 committed by GitHub
commit 4db6366f0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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()