Unity和unity:Unity3D中的动量和惯性

关于Unity和unity3d的问题,在inertia momentum中经常遇到, 所以,当我放开我的钥匙时,控制器停止,就像它撞到墙上一样,我试图改变这一点,但所有改变的是,现在它每次按一个键都会被扔到外太空:

所以,当我放开我的钥匙时,控制器停止,就像它撞到墙上一样,我试图改变这一点,但所有改变的是,现在它每次按一个键都会被扔到外太空:

    float x = Input.GetAxis("Horizontal");
    float z = Input.GetAxis("Vertical");
    Vector3 newMovement = transform.right * x + transform.forward * z;
    momentum = new Vector3(characterController.velocity.x, 0, characterController.velocity.z);
    newMovement.y = 0;
 if (!newMovement.normalized.Equals(momentum.normalized))
        {
            
            Debug.Log("new" + newMovement.normalized);
            Debug.Log(momentum.normalized);
            momentum = (momentum.magnitude - 2f) > 0 ? momentum.normalized * (momentum.magnitude - 2f) : Vector3.zero;
            
            if (newMovement.x == momentum.x)
                momentum.x = 0;
            if (newMovement.z == momentum.z)
                momentum.z = 0;
            
        }
        else
            momentum = Vector3.zero;
        characterController.Move((newMovement * speed + velocity + momentum) * Time.deltaTime);

此外,由于某种原因,即使有时两个向量相等,它们通过 if 语句(我尝试使用!=)(两个向量都记录在 if 语句的前 2 行)

enter image description here

0

使用https://docs.unity.com/ScriptReference/Vector3.SmoothDamp.html,它会逐渐将移动速度减慢到零,具体取决于smoothTime的值:

public float smoothTime = 0.3F;
private Vector3 velocity = Vector3.zero;
private Vector3 newMovement;
void Update()
{
    newMovement = transform.right * x + transform.forward * z;
    transform.position = Vector3.SmoothDamp(transform.position, targetPosition, ref velocity, smoothTime);
}

本站系公益性非盈利分享网址,本文来自用户投稿,不代表码文网立场,如若转载,请注明出处

(210)
Php代码运行:使用AJAX运行PHP代码
上一篇
Kiss link:KissFFT有多快
下一篇

相关推荐

发表评论

登录 后才能评论

评论列表(24条)