1
Fork 0
mirror of https://github.com/Steffo99/beat-td.git synced 2025-02-18 14:53:58 +00:00
beat-td/Assets/Scripts/LoadSceneOnClick.cs

13 lines
263 B
C#
Raw Normal View History

2018-04-23 10:45:40 +02:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class LoadSceneOnClick : MonoBehaviour {
public void Play () {
SceneManager.LoadScene("Game");
2018-04-23 13:50:24 +02:00
Time.timeScale = 1;
2018-04-23 10:45:40 +02:00
}
}