소스 검색

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

Fix CSGPolygon3D in path mode disappearing at runtime
Rémi Verschelde 2 년 전
부모
커밋
2488f3c2ad
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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;
 		}