Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Episode 14/GameUI.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using UnityEngine;
using UnityEngine.UI;
using System.Collections;
using UnityEngine.SceneManagement;

public class GameUI : MonoBehaviour {

Expand Down Expand Up @@ -29,6 +30,6 @@ IEnumerator Fade(Color from, Color to, float time) {

// UI Input
public void StartNewGame() {
Application.LoadLevel ("Game");
SceneManager.LoadScene ("Game");
}
}