diff options
author | Robin Hübner <profan@prfn.se> | 2019-08-27 17:13:08 +0200 |
---|---|---|
committer | Robin Hübner <profan@prfn.se> | 2019-08-27 17:13:08 +0200 |
commit | 4817595c0eecf6c63ff338628f56acd5ddde6f25 (patch) | |
tree | 756d68da917d15289959b9b49d1300e4cb2aca4a /scene/3d/physics_body.h | |
parent | 1b9ece832af030e45551b696b35a2ca628787efd (diff) |
fix otherwise unitialized variables, found in #31694
Diffstat (limited to 'scene/3d/physics_body.h')
-rw-r--r-- | scene/3d/physics_body.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/3d/physics_body.h b/scene/3d/physics_body.h index aa6030d44e..0e2e614717 100644 --- a/scene/3d/physics_body.h +++ b/scene/3d/physics_body.h @@ -162,6 +162,7 @@ protected: ShapePair(int p_bs, int p_ls) { body_shape = p_bs; local_shape = p_ls; + tagged = false; } }; struct RigidBody_RemoveAction { |