我的问题如下:
我正在尝试为 Unity 编写一个脚本,当单击一个特定对象时,我可以使用该脚本更改场景。但我收到以下错误:
NewBehaviourScript.cs(19,21):错误 CS0176:无法使用实例引用访问成员“SceneManager.LoadScene(string)”;改为使用类型名称来限定它
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class NewBehaviourScript : MonoBehaviour
{
void Update()
{
if (Input.GetMouseButtonDown(0))
{
Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
RaycastHit hit;
if (Physics.Raycast(ray, out hit))
{
if (hit.transform.name == "Cube")
{
SceneManager mySceneManager = new SceneManager();
mySceneManager.LoadScene("SceneTwo");
}
}
}
}
}