将每个面板保存到一个lvl之后,我得到50个级别,但是面板从1级更改为4级,然后我在代码中遇到了一些问题,该怎么做或更改? error button level error again
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.SceneManagement;
public class ButtonChange : MonoBehaviour
{
// Start is called before the first frame update
public void changemenuscene(int scenename)
{
SceneManager.LoadScene(scenename);
}
}
答案 0 :(得分:0)
Application.LoadLevel已过时。 尝试使用类似 SceneManager.LoadScene
答案 1 :(得分:0)
所有级别中的所有按钮是否都包含更改级别的脚本的引用?