diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-02-01 10:13:56 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-02-01 10:13:56 +0800 |
| commit | 4c8534b7b36e77a7c7c47a10b163695686391739 (patch) | |
| tree | d5399ddb195252b63292bdf62eadc2a0a64f56f9 /Assets/Scripts/StartSceneGuide.cs | |
| parent | 7100bf815bd4458f5e40a2c992e915f15bd6efa9 (diff) | |
整合素材
Diffstat (limited to 'Assets/Scripts/StartSceneGuide.cs')
| -rw-r--r-- | Assets/Scripts/StartSceneGuide.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Assets/Scripts/StartSceneGuide.cs b/Assets/Scripts/StartSceneGuide.cs new file mode 100644 index 0000000..d1d9ebc --- /dev/null +++ b/Assets/Scripts/StartSceneGuide.cs @@ -0,0 +1,13 @@ +using Mountools.LoadingScreen; +using UnityEngine; + +public class StartSceneGuide : MonoBehaviour +{ + private void Update() + { + if (Input.GetKeyDown(KeyCode.Space)) + { + LoadingScreen.LoadScene("Assets/Scenes/PlayScene.unity"); + } + } +} |
