blob: d1d9ebcd24cb1596d0c3b9a9a01b82cf5c5aa428 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using Mountools.LoadingScreen;
using UnityEngine;
public class StartSceneGuide : MonoBehaviour
{
private void Update()
{
if (Input.GetKeyDown(KeyCode.Space))
{
LoadingScreen.LoadScene("Assets/Scenes/PlayScene.unity");
}
}
}
|