Fixed gravity bug
This commit is contained in:
parent
35f41d3e51
commit
46bd7b1916
@ -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(())
|
||||
}
|
||||
|
Reference in New Issue
Block a user