Hello,
Before buying the license can you help me?
Example: a sprite, click on it, change to another sprite (or frame 2). click on it again, return to the first sprite (or frame 1). And again and again...
Many thanks in advance.
Regards,
Remy
In Construct first frame indexing as frame 0
When clicked set animationFrame to abs(Sprite.animationFrame-1) or (Sprite.animationFrame+1)%2
Develop games in your browser. Powerful, performant & highly capable.
Or
Set animation frame to (self.AnimationFrame=0)
Or 1-sprite.animationframe
Thanks a lot, I'll try...