我正在 unity 2d 上制作游戏,我刚刚添加了一个开始菜单,但每次我按下开始/播放时,菜单都会消失,并且不让我点击开始我不知道为什么这不起作用我需要帮助我很确定我的代码已经正确完成这里是我的代码和一些照片
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class StartGame : MonoBehaviour
{
private void Start()
{
SceneManager.LoadScene(SceneManager.GetActiveScene().buildIndex + 1);
}
}
我试过使用 Unity 论坛,但它并没有太大帮助我试图寻找我尝试调试的任何问题,但我仍然不是这方面的专家,Youtube 视频任何可能有帮助的东西