Merge pull request #77118 from etodd/fix-csgpolygon3d-dirty

Fix CSGPolygon3D in path mode disappearing at runtime
This commit is contained in:
Rémi Verschelde 2023-05-17 15:59:02 +02:00
commit 2488f3c2ad
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -1827,7 +1827,7 @@ CSGBrush *CSGPolygon3D::_build_brush() {
}
}
if (!path || !path->is_inside_tree()) {
if (!path) {
return new_brush;
}