首先,你要有两个或者多个场景,如图:
其次,你要把这个两个场景都添加到项目中去,如图:
意思大概都懂,就是打开生成设置,然后把另一个场景拖进去!
然后通过按钮或者鼠标切换,贴代码:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.SceneManagement;
public class NewButtonControl : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
//如果按下退出键,即切换到该场景
if (Input.GetKeyDown(KeyCode.Escape))
{
SceneManager.LoadScene("SampleScene");//SampleScene是场景名称
}
}
}
那如何切换回去呢?就不用多说了吧哈哈哈哈 !!!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)