We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 77e9f55 + 375e43b commit 1d8fa8bCopy full SHA for 1d8fa8b
editor/plugins/gizmos/navigation_link_3d_gizmo_plugin.cpp
@@ -70,9 +70,9 @@ void NavigationLink3DGizmoPlugin::redraw(EditorNode3DGizmo *p_gizmo) {
70
71
p_gizmo->clear();
72
73
- // Number of points in an octant. So there ill be 8 * points_in_octant points in total.
+ // Number of points in an octant. So there will be 8 * points_in_octant points in total.
74
// Correspond to the smoothness of the circle.
75
- const uint32_t points_in_octant = 4;
+ const uint32_t points_in_octant = 8;
76
real_t inc = (Math_PI / (4 * points_in_octant));
77
78
Vector<Vector3> lines;
0 commit comments