Skip to content

Commit

Permalink
Merge pull request godotengine#72782 from TokageItLab/fix-rot-sc
Browse files Browse the repository at this point in the history
Fix rotation key edit is labeled scale in AnimationMultiTrackKeyEdit
  • Loading branch information
YuriSizov authored Feb 6, 2023
2 parents 54b7685 + 116c975 commit 47c3e3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/animation_track_editor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1108,7 +1108,7 @@ void AnimationMultiTrackKeyEdit::_get_property_list(List<PropertyInfo> *p_list)
p_list->push_back(PropertyInfo(Variant::VECTOR3, "position"));
} break;
case Animation::TYPE_ROTATION_3D: {
p_list->push_back(PropertyInfo(Variant::QUATERNION, "scale"));
p_list->push_back(PropertyInfo(Variant::QUATERNION, "rotation"));
} break;
case Animation::TYPE_SCALE_3D: {
p_list->push_back(PropertyInfo(Variant::VECTOR3, "scale"));
Expand Down

0 comments on commit 47c3e3b

Please sign in to comment.