From b1261c65c5df0ca6d1243c435a8e21ffcb16dac3 Mon Sep 17 00:00:00 2001 From: Relintai Date: Sat, 11 May 2024 20:08:33 +0200 Subject: [PATCH] Fix the type of the rotation tracks in AnimationTrackKeyEdit. --- editor/animation_track_editor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/animation_track_editor.cpp b/editor/animation_track_editor.cpp index dac09fd76..216d3f450 100644 --- a/editor/animation_track_editor.cpp +++ b/editor/animation_track_editor.cpp @@ -598,7 +598,7 @@ public: } break; case Animation::TYPE_ROTATION_3D: { - p_list->push_back(PropertyInfo(Variant::VECTOR3, "rotation")); + p_list->push_back(PropertyInfo(Variant::QUATERNION, "rotation")); } break; case Animation::TYPE_SCALE_3D: {