Hi, im new in the Godot and programming.
I have an animation which has 9 frames, I want it to start in frame 0, but when it reaches frame 3, it will be repeated in a loop from 3 to 9.
Im used AnimatedSprite, because I have each animation separately
I have tried too many formulas and nothing works for me, here my scrip:
if int(Input.isactionjustpressed("uidown")):
$AnimatedSprite.play("Sentandose")
if $AnimatedSprite.frame ==3:
$AnimatedSprite.frames_loop(4,9)