Accelerate on downward portion of a jump in Unity C#
To help a character jump seem less floaty... I've seen this before, but thought I should take note of it as mentioned in this video.
if (rb.velocity < )
{
rb.velocity += vector3.down * Physics.gravity.y * time.fixedDeltaTime;
}
Comments
Post a Comment