繁体   English   中英

无法在 Unity 中制作不平滑的移动脚本

[英]Can't make non-smooth movement script in Unity

从昨天开始做一个2D游戏,在做角色移动的时候发现了一个问题。 我想让角色向左、向右、向上和向下移动,因为我在使用新的 Unity 输入系统时遇到了困难,所以我使用了旧的 Input.GetAxis()。 我的角色在移动,但我不喜欢平滑的移动,我希望玩家始终以相同的速度移动,并在我释放移动键的那一刻停止。 但要知道,每次我按键时,我只能让他移动一点。

这是代码:

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

public class AlternativeController : MonoBehaviour
{
    public float speed;
    bool canMove = true;

    // Start is called before the first frame update
    void Start()
    {
        
    }

    // Update is called once per frame
    void Update()
    {
        
        if (canMove)
        {
            Move();
        }
    }

    void Move()
    {
        if (Input.GetKeyDown("right"))
        {
            transform.Translate(speed, 0, 0);
        }

        if (Input.GetKeyDown("left"))
        {
            transform.Translate(-speed, 0, 0);
        }

        if (Input.GetKeyDown("up"))
        {
            transform.Translate(0, speed, 0);
        }

        if (Input.GetKeyDown("down"))
        {
            transform.Translate(0, -speed, 0);
        }
    }
}

您可以使用:

 Input.GetAxisRaw("Horizontal"); Input.GetAxisRaw("Vertical");

这将使用旧输入系统的更便携的GetAxis ,而没有GetAxis()的平滑。

或者,如评论中所述,您可以将Input.GetKeyDown()替换为Input.GetKey()以检查是否持有某个键。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM