fix otherwise unitialized variables, found in #31694

This commit is contained in:
Robin Hübner 2019-08-27 17:13:08 +02:00
parent 1b9ece832a
commit 4817595c0e
No known key found for this signature in database
GPG Key ID: 5E259E334824FDAA
2 changed files with 2 additions and 0 deletions

View File

@ -162,6 +162,7 @@ protected:
ShapePair(int p_bs, int p_ls) { ShapePair(int p_bs, int p_ls) {
body_shape = p_bs; body_shape = p_bs;
local_shape = p_ls; local_shape = p_ls;
tagged = false;
} }
}; };
struct RigidBody_RemoveAction { struct RigidBody_RemoveAction {

View File

@ -1412,6 +1412,7 @@ void AnimationTree::_update_properties_for_node(const String &p_base_path, Ref<A
Vector<Activity> activity; Vector<Activity> activity;
for (int i = 0; i < node->get_input_count(); i++) { for (int i = 0; i < node->get_input_count(); i++) {
Activity a; Activity a;
a.activity = 0;
a.last_pass = 0; a.last_pass = 0;
activity.push_back(a); activity.push_back(a);
} }