Skip to content

Commit

Permalink
Fixed seeking behavior of property track with discrete interpolation
Browse files Browse the repository at this point in the history
  • Loading branch information
TokageItLab committed Sep 10, 2021
1 parent c30cffe commit 6613d9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scene/animation/animation_tree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -958,7 +958,7 @@ void AnimationTree::_process_graph(real_t p_delta) {

Variant::interpolate(t->value, value, blend, t->value);

} else if (delta != 0) {
} else {
List<int> indices;
a->value_track_get_key_indices(i, time, delta, &indices);

Expand Down

0 comments on commit 6613d9c

Please sign in to comment.