diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-05-28 22:29:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-28 22:29:02 +0200 |
commit | bbb1af91d8c3d7fcf4163614e9916b20ed3cd9c3 (patch) | |
tree | b8ba426b8f9eb9e7b429460e43f16a3cee7d61ee /scene/3d | |
parent | 84331549db2673aed93a7714e57015c66717df17 (diff) | |
parent | 66a36ba474789cb1189ac58bbc554ffddb953461 (diff) |
Merge pull request #29251 from qarmin/some_uninitialised_values_fixes
Fix some unintialised variables
Diffstat (limited to 'scene/3d')
-rw-r--r-- | scene/3d/proximity_group.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/3d/proximity_group.cpp b/scene/3d/proximity_group.cpp index 12eab2e4e8..96dc3304f2 100644 --- a/scene/3d/proximity_group.cpp +++ b/scene/3d/proximity_group.cpp @@ -204,6 +204,7 @@ ProximityGroup::ProximityGroup() { group_version = 0; dispatch_mode = MODE_PROXY; + cell_size = 1.0; grid_radius = Vector3(1, 1, 1); set_notify_transform(true); }; |