Godot Version
4.2.1
Question
Being able to set frame duration in an AnimatedSprite2D is really useful, but I cannot find a good way to set the “frame” I want in an animation with arbitrary frame durations.
For example, let’s say I have 3 frames in an animation with 1FPS, with the first frame having a duration of x3 and the rest having a default x1 duration. The animation has an overall length that is the same as another one with 5 normal duration frames. However, I can easily choose to go to frame 3 of the animation with 5 normal frames (aka skip forward 2 seconds) by changing the .frame
property, while doing the same to the animation with edited frame duration will put me on the final frame, rather than setting the animation to the first frame and setting the frame progress to 2 seconds.
Is there a way to set the exact point of progress of an animation made of frames with arbitrary frame durations (like how you can set the exact frame of an animation with default frame durations)?