diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-02-09 22:17:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-09 22:17:07 +0100 |
commit | 8161e285126797b8076dbf7583df38bf0539d0a8 (patch) | |
tree | bb49d375b1e3e82aa4138231c9bead398f250cea | |
parent | d22ac13bc2f29cb9e490f5a7838fcd52805682cf (diff) | |
parent | c77dd7b96f3d1b9ac9e5492fd5b1da47e18a6dc8 (diff) |
Merge pull request #55899 from groud/fix_rotation_track_wrong_type
Fixes rotation 3D track inspector not using the correct type
-rw-r--r-- | editor/animation_track_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/animation_track_editor.cpp b/editor/animation_track_editor.cpp index 2f33619a52..adb91fb08d 100644 --- a/editor/animation_track_editor.cpp +++ b/editor/animation_track_editor.cpp @@ -570,7 +570,7 @@ public: p_list->push_back(PropertyInfo(Variant::VECTOR3, "position")); } 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: { p_list->push_back(PropertyInfo(Variant::VECTOR3, "scale")); |