From 1efd37f1b77d71c652fe28a50f42c5284d5ef4ec Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Thu, 17 Jan 2019 19:11:43 -0300 Subject: [PATCH] Fix uninitialized memory error. --- scene/3d/area.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/scene/3d/area.cpp b/scene/3d/area.cpp index 27bace95293..99f43b12424 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);