Fix CSG gizmos only working on root shapes
(cherry picked from commit 60f3d1d36f
)
This commit is contained in:
parent
cb5f13649b
commit
cf6d8a0f2b
1 changed files with 6 additions and 8 deletions
|
@ -377,15 +377,13 @@ void CSGShapeSpatialGizmoPlugin::redraw(EditorSpatialGizmo *p_gizmo) {
|
|||
p_gizmo->add_lines(lines, material);
|
||||
p_gizmo->add_collision_segments(lines);
|
||||
|
||||
if (cs->is_root_shape()) {
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue