Hi, I'm using as a base a quiz kindly supplied by dop2000 https://www.construct.net/en/forum/construct-2/how-do-i-18/please-help-project-138137
I'm trying to add a different image on stage for each question and have created a sprite in the game with animation frames (1 to 6) and have added that image at 'On start layout' and set it to 'Set animation frame to 0' (it shows fine on running the layout)
On 'Answer is correct' I've added the image again with Set animation to frame 5 (and that works fine, it jumps to 5)
What I'm trying to do is get the sprite animation to step one image forward on each correct answer, eg
question1 = sprite1 animation-frame1
question2 = sprite1 animation-frame2
question3 = sprite1 animation-frame3
I've tried using the 'On start layout' and set it to Set animation frame to 0 and then on the correct answer adding the sprite with self.animationFrame+1 but for some reason it wont change.
Any ideas