Unityでゲームを作って見たくて、まずキューブが作ったフィールドの上を動かせる
コードを書きましたが動きません。
使用しているUnityは2020の3.5f1です。
エラーコードは
Assets¥player.cs(19.19):error CS0117:’Input’does not countain a definition for 'Getkey'
Assets¥player.cs(19.34):error CS0117:'KeyCode'does not countain a definition for 'Leftarrow'
Assets¥player.cs(22.72):error CS0117:'Time'does not countain a definition for 'deltaime'
Assets¥player.cs(25.19):error CS0117:'Input'does not countain a definition for 'Getkey'
Assets¥player.cs(25.34):error CS0117:'KeyCode'does not countain a definition for 'Rightarrow'
Assets¥player.cs(28.73):error CS0117:'Time'does not countain a definition for 'deltaime'
と出ており初心者には何が何だかわかりません.
ソースコードは
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class player : MonoBehaviour
{
public float speed = 1.0f;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
if (Input.Getkey(KeyCode.Leftarrow))
{
if (this.transform.position.x > -4)
this.transform.position += Vector3.left * speed * Time.deltaime;
}
if (Input.Getkey(KeyCode.Rightarrow))
{
if (this.transform.position.x > 4)
this.transform.position += Vector3.right * speed * Time.deltaime;
}
}
}
です。助けてください。
あなたの回答
tips
プレビュー