diff options
author | Juan Linietsky <reduzio@gmail.com> | 2019-01-17 19:11:43 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2019-01-17 19:12:01 -0300 |
commit | 1efd37f1b77d71c652fe28a50f42c5284d5ef4ec (patch) | |
tree | de2af6f7296d696d2c1f9d13db06e99f971a3f1d /scene | |
parent | 279ddbdf1ba5665f9dad08a7ee9fbb6ecb5936ed (diff) |
Fix uninitialized memory error.
Diffstat (limited to 'scene')
-rw-r--r-- | scene/3d/area.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/3d/area.cpp b/scene/3d/area.cpp index 27bace9529..99f43b1242 100644 --- a/scene/3d/area.cpp +++ b/scene/3d/area.cpp @@ -753,6 +753,7 @@ Area::Area() : angular_damp = 1; priority = 0; monitoring = false; + monitorable = false; collision_mask = 1; collision_layer = 1; set_ray_pickable(false); |