Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scene/animation/animation_blend_tree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ AnimationNode::NodeTimeInfo AnimationNodeAnimation::_process(ProcessState &p_pro
// 3. Progress for Animation.
double prev_playback_time = prev_time;
double cur_playback_time = cur_time;
if (stretch_time_scale) {
if (use_custom_timeline && stretch_time_scale) {
double mlt = anim_size / timeline_length;
prev_playback_time *= mlt;
cur_playback_time *= mlt;
Expand Down
Loading