我一直在使用 Unity 5 引擎研究一些示例来开发无尽的跑步游戏。我对我的角色应用了跳跃动作。它确实工作得很好,但我希望它有点完美,所以我在这个例子中使用曲线植入了跳跃,遇到了这个问题。那是在为角色控制器应用曲线并进行一些调整之后,现在当我跳跃时,在我接触平台(地面)后曲线开始调整控制器,这使得跳跃变得不切实际。我确实尝试使用固定的更新方法来实现跳跃,因为游戏是一个无尽的跑步者,它基本上会逐帧更新所有内容,但它不起作用。如何实现逼真的跳跃?以下是我到目前为止所尝试的。
if (controller.isGrounded)
{
verticalVelocity = -0.5f; //upward thrust / jump height
if (currentBaseState.fullPathHash == locoState) // is character in moving state
{
if (Input.GetButtonDown("Jump"))
{
verticalVelocity = 18f;
anim.SetBool("Jump", true);
}
}
else if (currentBaseState.fullPathHash == jumpState) //Is character in jump state
{
if (!anim.IsInTransition(0))
{
if (useCurves)
{
controller.height = anim.GetFloat("ColliderHeight"); //get the controller height using curves
controller.center = new Vector3(0f, anim.GetFloat("ColliderY"), 0f); //Get the controller Y axis using the curves (center of chr ctrlr)
}
anim.SetBool("Jump", false);
}
// Applying curves
Ray ray = new Ray(transform.position + Vector3.up, -Vector3.up);
RaycastHit hitInfo = new RaycastHit();
if (Physics.Raycast(ray, out hitInfo))
{
print(ray.ToString());
if (hitInfo.distance > 1.75f)
{
anim.MatchTarget(hitInfo.point, Quaternion.identity, AvatarTarget.Root, new MatchTargetWeightMask(new Vector3(0, 1f, 0), 0), 0.03f, 0.6f);
}
}
}
}
帮助将不胜感激