提问人:VELUPUGONDA BHAVANI KRISHNA 提问时间:11/5/2023 更新时间:11/5/2023 访问量:11
我的滑墙即使运行良好也无法正常工作
My wallslide is not working even through it is running perfectly
问:
private void WallSlide()
{
bool horizontalcondition = horizontal != 0f;
Debug.Log(horizontalcondition);
if (IsWalled() && !isGrounded() && horizontalcondition)
{
iswallSliding = true;
rb.velocity = new Vector2(rb.velocity.x, Mathf.Clamp(rb.velocity.y, -wallSlidingSpeed, float.MaxValue));
Debug.Log(horizontal);
}
else
{
iswallSliding = false;
}
}
我试图操纵滑墙的速度,但它对坠落
速度没有任何影响,玩家的速度会减慢,并对你的文本对象产生滑墙效果
答: 暂无答案
上一个:箱子在地面上和向前移动时旋转
下一个:Youngs 模量弹簧应变
评论