mirror of
https://github.com/minetest/minetest.git
synced 2024-12-02 12:33:45 +01:00
Android stepheight: Only increase if 'touching ground' (#6313)
This commit is contained in:
parent
2c450ed93f
commit
888b99e1b6
@ -330,6 +330,7 @@ void LocalPlayer::move(f32 dtime, Environment *env, f32 pos_max_d,
|
|||||||
float player_stepheight = (touching_ground) ? (BS * 0.6f) : (BS * 0.2f);
|
float player_stepheight = (touching_ground) ? (BS * 0.6f) : (BS * 0.2f);
|
||||||
|
|
||||||
#ifdef __ANDROID__
|
#ifdef __ANDROID__
|
||||||
|
if (touching_ground)
|
||||||
player_stepheight += (0.6f * BS);
|
player_stepheight += (0.6f * BS);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user