Unity错误CS0103:名称'输入'在当前上下文中不存在

问题描述 投票:0回答:1

嘿,我正在学习Unity开发引擎,但是当我尝试将脚本与我的精灵关联时,出现了这个错误:Unity错误CS0103:名称'input'在当前上下文中不存在,我的代码非常简单,

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Playermovement : MonoBehaviour {

    public float speed;
    private Rigidbody2D myRigidbody;
    private Vector2 change;

            void Start() {
        myRigidbody = GetComponent<Rigidbody2D>();
    }
           void Update() {
        change = Vector2.zero;
        change.x = Input.GetAxis("Horizontal");
        change.y = input.GetAxis("Vertical");
        Debug.Log(change);
            }                                                                                            
    }

那么有人能回答我的问题吗?我会接受任何帮助的感谢!

[我正在使用ItelliJ IDEA编辑我的C#脚本和Unity 2019.3.8f1个人

c# unity3d unityscript
1个回答
1
投票

因为您使用i

© www.soinside.com 2019 - 2024. All rights reserved.