Skip to content

Commit 1d8fa8b

Browse files
committed
Merge pull request #101411 from Calinou/editor-navigationlink-increase-gizmo-detail
Increase NavigationLink3D gizmo detail to match other circle/sphere 3D gizmos
2 parents 77e9f55 + 375e43b commit 1d8fa8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

editor/plugins/gizmos/navigation_link_3d_gizmo_plugin.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ void NavigationLink3DGizmoPlugin::redraw(EditorNode3DGizmo *p_gizmo) {
7070

7171
p_gizmo->clear();
7272

73-
// Number of points in an octant. So there ill be 8 * points_in_octant points in total.
73+
// Number of points in an octant. So there will be 8 * points_in_octant points in total.
7474
// Correspond to the smoothness of the circle.
75-
const uint32_t points_in_octant = 4;
75+
const uint32_t points_in_octant = 8;
7676
real_t inc = (Math_PI / (4 * points_in_octant));
7777

7878
Vector<Vector3> lines;

0 commit comments

Comments
 (0)