Browse Source

Merge pull request #37602 from Janglee123/reversed-zoom-scale-animtion-player

Reversed timeline zoom slider of AnimationPlayer
Rémi Verschelde 5 years ago
parent
commit
8d02dadaaa
1 changed files with 1 additions and 1 deletions
  1. 1 1
      editor/animation_track_editor.cpp

+ 1 - 1
editor/animation_track_editor.cpp

@@ -1402,7 +1402,7 @@ void AnimationTimelineEdit::_zoom_changed(double) {
 
 float AnimationTimelineEdit::get_zoom_scale() const {
 
-	float zv = zoom->get_value();
+	float zv = zoom->get_max() - zoom->get_value();
 	if (zv < 1) {
 		zv = 1.0 - zv;
 		return Math::pow(1.0f + zv, 8.0f) * 100;