summaryrefslogtreecommitdiffstats
path: root/editor/plugins/path_3d_editor_plugin.cpp
diff options
context:
space:
mode:
authorSilc Renew <tokage.it.lab@gmail.com>2023-02-08 02:48:33 +0900
committerSilc Lizard (Tokage) Renew <61938263+TokageItLab@users.noreply.github.com>2023-05-24 17:37:00 +0900
commit42aa5398d951dc709c892ef9f7afef6a0cf5d9ca (patch)
tree9dc0fa44cf373b3bc898ffa13241d8dd41f99ec8 /editor/plugins/path_3d_editor_plugin.cpp
parentdc625bcbfc5b587ba8867481ee7a1f6a567c25d0 (diff)
downloadredot-engine-42aa5398d951dc709c892ef9f7afef6a0cf5d9ca.tar.gz
Fix Pathfollow direction
Co-authored-by: aaronfranke <arnfranke@yahoo.com>
Diffstat (limited to 'editor/plugins/path_3d_editor_plugin.cpp')
-rw-r--r--editor/plugins/path_3d_editor_plugin.cpp4
1 files changed, 2 insertions, 2 deletions
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);