SHADE_Y3/Assets/Scripts/SC_MainMenu.cs

18 lines
249 B
C#
Raw Normal View History

2022-11-22 16:18:16 +08:00
using System;
using SHADE;
public class MainMenu : Script
2022-11-22 16:18:16 +08:00
{
protected override void awake()
{
}
protected override void update()
{
if (Input.GetKey(Input.KeyCode.Space))
{
SceneManager.ChangeScene(86098106);
}
2022-11-22 16:18:16 +08:00
}
}