Browse Source

Fix CSGPolygon3D in path mode disappearing at runtime.

Evan Todd 2 years ago
parent
commit
da7e54ec17
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules/csg/csg_shape.cpp

+ 1 - 1
modules/csg/csg_shape.cpp

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