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,14 +377,12 @@ void CSGShapeSpatialGizmoPlugin::redraw(EditorSpatialGizmo *p_gizmo) {
|
||||||
p_gizmo->add_lines(lines, material);
|
p_gizmo->add_lines(lines, material);
|
||||||
p_gizmo->add_collision_segments(lines);
|
p_gizmo->add_collision_segments(lines);
|
||||||
|
|
||||||
Array csg_meshes = cs->get_meshes();
|
if (cs->is_root_shape()) {
|
||||||
if (csg_meshes.size() != 2) {
|
Array csg_meshes = cs->get_meshes();
|
||||||
return;
|
Ref<Mesh> csg_mesh = csg_meshes[1];
|
||||||
}
|
if (csg_mesh.is_valid()) {
|
||||||
|
p_gizmo->add_collision_triangles(csg_mesh->generate_triangle_mesh());
|
||||||
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()) {
|
if (p_gizmo->is_selected()) {
|
||||||
|
|
Loading…
Reference in a new issue