Ensure CSG parent's _make_dirty() is called when entering a tree.

This commit is contained in:
Marcel Admiraal 2020-07-30 11:25:28 +01:00
parent 35ff38b3d4
commit 9be7b30f35
1 changed files with 4 additions and 9 deletions

View File

@ -132,18 +132,13 @@ void CSGShape3D::_make_dirty() {
return; return;
} }
if (dirty) { if (parent) {
return; parent->_make_dirty();
} else if (!dirty) {
call_deferred("_update_shape");
} }
dirty = true; dirty = true;
if (parent) {
parent->_make_dirty();
} else {
//only parent will do
call_deferred("_update_shape");
}
} }
CSGBrush *CSGShape3D::_get_brush() { CSGBrush *CSGShape3D::_get_brush() {