How to advance an animation without calling the method tracks in it?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Diet Estus

I am trying to advance an animation in an AnimationPlayer.

Unfortunately, advancing an animation by some delta results in calling all methods of the animation between the current position and the new position.

This is stated in the documentation for AnimationPlayer:

void advance ( float delta )
Shifts position in the animation timeline. Delta is the time in seconds to shift. Events between the current frame and delta are handled.

Is there a way advance my animation without calling the intervening methods?