diff --git a/modules/csg/csg_gizmos.cpp b/modules/csg/csg_gizmos.cpp index 43d7fcb7976..d5c63ce9ca5 100644 --- a/modules/csg/csg_gizmos.cpp +++ b/modules/csg/csg_gizmos.cpp @@ -317,27 +317,16 @@ bool CSGShapeSpatialGizmoPlugin::is_selectable_when_hidden() const { void CSGShapeSpatialGizmoPlugin::redraw(EditorSpatialGizmo *p_gizmo) { - CSGShape *cs = Object::cast_to(p_gizmo->get_spatial_node()); - p_gizmo->clear(); - Ref material; - switch (cs->get_operation()) { - case CSGShape::OPERATION_UNION: - material = get_material("shape_union_material", p_gizmo); - break; - case CSGShape::OPERATION_INTERSECTION: - material = get_material("shape_intersection_material", p_gizmo); - break; - case CSGShape::OPERATION_SUBTRACTION: - material = get_material("shape_subtraction_material", p_gizmo); - break; - } - - Ref handles_material = get_material("handles"); + CSGShape *cs = Object::cast_to(p_gizmo->get_spatial_node()); PoolVector faces = cs->get_brush_faces(); + if (faces.size() == 0) { + return; + } + Vector lines; lines.resize(faces.size() * 2); { @@ -353,6 +342,21 @@ void CSGShapeSpatialGizmoPlugin::redraw(EditorSpatialGizmo *p_gizmo) { } } + Ref material; + switch (cs->get_operation()) { + case CSGShape::OPERATION_UNION: + material = get_material("shape_union_material", p_gizmo); + break; + case CSGShape::OPERATION_INTERSECTION: + material = get_material("shape_intersection_material", p_gizmo); + break; + case CSGShape::OPERATION_SUBTRACTION: + material = get_material("shape_subtraction_material", p_gizmo); + break; + } + + Ref handles_material = get_material("handles"); + p_gizmo->add_lines(lines, material); p_gizmo->add_collision_segments(lines);