Revert "Fix selection of CSG objects"

This reverts commit d445c14595.
This commit is contained in:
Rémi Verschelde 2022-02-21 10:45:56 +01:00
parent c93408b568
commit 3b294aff20
1 changed files with 0 additions and 10 deletions

View File

@ -377,16 +377,6 @@ void CSGShapeSpatialGizmoPlugin::redraw(EditorSpatialGizmo *p_gizmo) {
p_gizmo->add_lines(lines, material);
p_gizmo->add_collision_segments(lines);
Array csg_meshes = cs->get_meshes();
if (csg_meshes.size() != 2) {
return;
}
Ref<Mesh> csg_mesh = csg_meshes[1];
if (csg_mesh.is_valid()) {
p_gizmo->add_collision_triangles(csg_mesh->generate_triangle_mesh());
}
if (p_gizmo->is_selected()) {
// Draw a translucent representation of the CSG node
Ref<ArrayMesh> mesh = memnew(ArrayMesh);