mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Reset touching_ground when in free_move
This corrects local player animation after enabling fly while standing on ground.
This commit is contained in:
parent
09f9e465e7
commit
0ab580810c
1 changed files with 4 additions and 0 deletions
|
@ -200,6 +200,8 @@ void LocalPlayer::move(f32 dtime, Environment *env, f32 pos_max_d,
|
|||
if (noclip && free_move) {
|
||||
position += m_speed * dtime;
|
||||
setPosition(position);
|
||||
|
||||
touching_ground = false;
|
||||
added_velocity = v3f(0.0f); // ignored
|
||||
return;
|
||||
}
|
||||
|
@ -787,6 +789,8 @@ void LocalPlayer::old_move(f32 dtime, Environment *env, f32 pos_max_d,
|
|||
if (free_move) {
|
||||
position += m_speed * dtime;
|
||||
setPosition(position);
|
||||
|
||||
touching_ground = false;
|
||||
m_sneak_node_exists = false;
|
||||
added_velocity = v3f(0.0f);
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue