mirror of
https://github.com/luanti-org/luanti.git
synced 2025-07-02 16:38:41 +00:00
Fix jittering sounds on entities (fixes #2974)
This commit is contained in:
parent
2c25107c31
commit
8a6e921cb8
3 changed files with 40 additions and 59 deletions
|
@ -57,13 +57,15 @@ struct collisionMoveResult
|
|||
bool collides;
|
||||
bool collides_xz;
|
||||
bool standing_on_unloaded;
|
||||
bool standing_on_object;
|
||||
std::vector<CollisionInfo> collisions;
|
||||
|
||||
collisionMoveResult():
|
||||
touching_ground(false),
|
||||
collides(false),
|
||||
collides_xz(false),
|
||||
standing_on_unloaded(false)
|
||||
standing_on_unloaded(false),
|
||||
standing_on_object(false)
|
||||
{}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue