https://www.sejuku.net/blog/49352を見本にしてシーン移行しようとしているのですが
コンソールに以下のエラーがでます
一応うち間違いかと思いコピペしてみたのですがそれでもダメでした
誰か解決案くださるとありがたいです。
一応開発環境表記
Unity2020年の1.14f1
コンソールのエラー内容
Assets\Scenes\Title.cs(21,9): error CS0103: The name 'SceneManager' does not exist in the current context
コード内容
C#
1using System.Collections; 2using System.Collections.Generic; 3using UnityEngine; 4 5public class Title : MonoBehaviour 6{ 7 // Use this for initialization 8 void Start() 9 { 10 Invoke("ChangeScene", 1.5f); 11 } 12 13 // Update is called once per frame 14 void Update() 15 { 16 17 } 18 19 void ChangeScene() 20 { 21 SceneManager.LoadScene("MainScene"); 22 } 23}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/18 05:38