我正在尝试通过按下任何键或单击鼠标来更改场景,但它似乎在游戏中没有给出任何响应。
我已经尝试了互联网上最常见的解决方案:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class ForMainMenu : MonoBehaviour
{
public
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
if (Input.anyKeyDown)
{
SceneManager.LoadScene("Main menu");
}
}
}
我不确定要在什么上应用脚本。现在,该脚本已应用于游戏对象。
我资产中的场景:https ://imgur.com/gCo53Ks