Fix sphere gizmo handle position

This commit is contained in:
Mike Precup 2025-07-14 10:19:01 -07:00
parent d5cb0f948e
commit b9beb852e6

View file

@ -396,7 +396,7 @@ void CollisionShape3DGizmoPlugin::redraw(EditorNode3DGizmo *p_gizmo) {
p_gizmo->add_lines(points, material, false, collision_color);
p_gizmo->add_collision_segments(points);
Vector<Vector3> handles;
handles.push_back(Vector3(r, 0, 0));
handles.push_back(Vector3(radius, 0, 0));
p_gizmo->add_handles(handles, handles_material);
}