Fix Path2D fish bone direction

This commit is contained in:
Yaohua Xiong
2022-12-06 20:45:17 +08:00
parent 43e9ca40ff
commit 322dbd0955
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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);
}
}