[Solved] Is there a way to have an action tick on each frame of an animation?

I haven’t really looked into this and I’m sure there’s a way to do it (breaking it down into separate conditions, i.e., the current frame is 1, do one tick of damage).

But is there an easier way to do this rather than dividing each animation up into separate actions per frame?

Thanks!

If number of animation = 1
→ if current frame = variable(frame) // do action and +1 to variable(frame)

1 Like

It works perfectly. Thanks. You’re a genius.