From 42aa5398d951dc709c892ef9f7afef6a0cf5d9ca Mon Sep 17 00:00:00 2001 From: Silc Renew Date: Wed, 8 Feb 2023 02:48:33 +0900 Subject: Fix Pathfollow direction Co-authored-by: aaronfranke --- editor/plugins/path_3d_editor_plugin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'editor/plugins/path_3d_editor_plugin.cpp') diff --git a/editor/plugins/path_3d_editor_plugin.cpp b/editor/plugins/path_3d_editor_plugin.cpp index 75cd04bee8..d49c04445e 100644 --- a/editor/plugins/path_3d_editor_plugin.cpp +++ b/editor/plugins/path_3d_editor_plugin.cpp @@ -274,10 +274,10 @@ void Path3DGizmo::redraw() { // Fish Bone. v3p.push_back(p1); - v3p.push_back(p1 + (side - forward + up * 0.3) * 0.06); + v3p.push_back(p1 + (side + forward + up * 0.3) * 0.06); v3p.push_back(p1); - v3p.push_back(p1 + (-side - forward + up * 0.3) * 0.06); + v3p.push_back(p1 + (-side + forward + up * 0.3) * 0.06); } add_lines(v3p, path_material); -- cgit v1.2.3