Enterが押されたら次のシーンに行くようにしたいのですが一フレームごとにエラーがでます。シーン登録はしております
(そのエラーは↓に記述してある)
誰か解決案くださるとありがたいです。
開発環境表記
2020年の1.14f1
コンソール
ArgumentException: Input Key named: KeyCode.Return is unknown
UnityEngine.Input.GetKey (System.String name) (at <345a1d9b2aab40b5b6362d7fa1668943>:0)
main_niiku.Update () (at Assets/sukuriputozu/Title/main_niiku.cs:17)
C#
1コード 2using System.Collections; 3using System.Collections.Generic; 4using UnityEngine; 5using UnityEngine.SceneManagement; 6 7public class main_niiku : MonoBehaviour 8{ 9 // Start is called before the first frame update 10 void Start() 11 { 12 13 } 14 15 // Update is called once per frame 16 void Update() 17 { 18 if (Input.GetKey("KeyCode.Return")) 19 { 20 SceneManager.LoadScene("mainScene"); 21 } 22 } 23} 24
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/20 13:26