整合包

gameplay bundle has been imported together
This commit is contained in:
FloatGaming
2025-08-09 18:29:32 +08:00
parent e7962bf492
commit 1d818fa4eb
1654 changed files with 431813 additions and 103 deletions
+5 -4
View File
@@ -1,11 +1,11 @@
using System.Collections;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class pressStart : MonoBehaviour
{
public string sceneName_toNextScene = "selectYourSongFirst";
public string sceneName_toNextScene = "selectYourSongFirst";
// Start is called before the first frame update
@@ -17,9 +17,10 @@ public class pressStart : MonoBehaviour
// Update is called once per frame
void Update()
{
if (Input.GetKeyDown(KeyCode.Space))
if (Input.GetKeyDown(KeyCode.Space) ||
Input.GetMouseButtonDown(0))
{
SceneManager.LoadScene(sceneName_toNextScene);
}
}
}
}