前提・実現したいこと
ここに質問の内容を詳しく書いてください。
よくある問題ですが、スクリプトが追加できません。
もちろん、ファイル名とClass名は一致させてます、スペースなどもありません。何回か作り直しても追加できません。
助けてください。
ファイル名:Player
記載したスクリプトは下記
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.postion += Vector3.left * speed * Time.delaTime; } if(input.GetKey(KeyCode.RightArrow)) { if(this.transform.position.x > 4) this.transform.postion += Vector3.right * speed * Time.delaTime; } }
}
Consoleウィンドウでエラーを読みましょう。
話はそれからです。