Parcourir la source

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

Fix CSGPolygon3D in path mode disappearing at runtime
Rémi Verschelde il y a 2 ans
Parent
commit
2488f3c2ad
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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;
 		}