Fixed gravity bug

This commit is contained in:
Evan Pratten 2021-10-02 22:29:54 -04:00
parent 35f41d3e51
commit 46bd7b1916

View File

@ -79,7 +79,10 @@ pub fn modify_player_based_on_forces(
level_height_offset,
);
}
}else if player.current_state == CharacterState::Running {
player.override_state(CharacterState::Jumping);
}
// Finally apply the velocity to the player
player.position += player.velocity;
@ -100,5 +103,6 @@ pub fn modify_player_based_on_forces(
return Err(());
}
Ok(())
}