You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-13 13:31:48 +00:00
Reversed timeline zoom slider
Fixes #37409
(cherry picked from commit 3f23e1d600)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user