From 9be7b30f3536057b22fd70d5367268749c1a7ea9 Mon Sep 17 00:00:00 2001 From: Marcel Admiraal Date: Thu, 30 Jul 2020 11:25:28 +0100 Subject: [PATCH] Ensure CSG parent's _make_dirty() is called when entering a tree. --- modules/csg/csg_shape.cpp | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/modules/csg/csg_shape.cpp b/modules/csg/csg_shape.cpp index cea006364f1..82a47f594b8 100644 --- a/modules/csg/csg_shape.cpp +++ b/modules/csg/csg_shape.cpp @@ -132,18 +132,13 @@ void CSGShape3D::_make_dirty() { return; } - if (dirty) { - return; + if (parent) { + parent->_make_dirty(); + } else if (!dirty) { + call_deferred("_update_shape"); } dirty = true; - - if (parent) { - parent->_make_dirty(); - } else { - //only parent will do - call_deferred("_update_shape"); - } } CSGBrush *CSGShape3D::_get_brush() {