1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-05 19:31:35 +00:00

Fix CSGPolygon3D in path mode disappearing at runtime.

(cherry picked from commit da7e54ec17)
This commit is contained in:
Evan Todd
2023-05-15 16:52:39 -07:00
committed by Yuri Sizov
parent dcf6f2b29f
commit 156862bddb

View File

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