Skip to content

Commit

Permalink
Merge pull request #77118 from etodd/fix-csgpolygon3d-dirty
Browse files Browse the repository at this point in the history
Fix CSGPolygon3D in path mode disappearing at runtime
  • Loading branch information
akien-mga committed May 17, 2023
2 parents 437041a + da7e54e commit 2488f3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/csg/csg_shape.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1827,7 +1827,7 @@ CSGBrush *CSGPolygon3D::_build_brush() {
}
}

if (!path || !path->is_inside_tree()) {
if (!path) {
return new_brush;
}

Expand Down

0 comments on commit 2488f3c

Please sign in to comment.