From 322dbd095563cef09bebcaca3e6c6ea797fee367 Mon Sep 17 00:00:00 2001 From: Yaohua Xiong Date: Tue, 6 Dec 2022 20:45:17 +0800 Subject: Fix Path2D fish bone direction --- scene/2d/path_2d.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scene/2d/path_2d.cpp') diff --git a/scene/2d/path_2d.cpp b/scene/2d/path_2d.cpp index 3876ab128c..823b8d56e3 100644 --- a/scene/2d/path_2d.cpp +++ b/scene/2d/path_2d.cpp @@ -120,7 +120,7 @@ void Path2D::_notification(int p_what) { Transform2D *w = frames.ptrw(); for (int i = 0; i < sample_count; i++) { - w[i] = curve->sample_baked_with_rotation(i * interval, true); + w[i] = curve->sample_baked_with_rotation(i * interval, false); } } -- cgit v1.2.3