I'm working on a 2D platformer as a learning experiment and currently having a little trouble with the jumping logic. I understand that gravity should be applied to the player that affects the jumping and descending process. Here's how I currently have it implemented.
isJumping is just a bool that I use to know if player should be going up or down and whether they're currently mid-jump so they don't jump again.
spriteJumpPosition is the value I use to limit how high the player jumps (default is 0, upper limit of 10 is hard-coded below)
void UpdateGravity()
{
// Check if player is currently jumping
if (isJumping == true)
{
if (spriteJumpPosition < 10)
{
spritePosition.Y += (float)gravity;
spriteJumpPosition += gravity;
}
else if ( spriteJumpPosition >= 10 )
{
isJumping = false;
spritePosition.Y -= (float)gravity;
spriteJumpPosition -= gravity;
}
}
else if ( isJumping == false )
{
if (spriteJumpPosition > 0)
{
spriteJumpPosition -= (int)gravity;
spritePosition.Y -= (float)gravity;
}
}
}
With the above code, the current behavior is that the player moves down a bit (maybe 2-3 frames) then starts going up, with isJumping = false and never stops. What am I doing wrong here? Is this just the complete wrong way to go about this?