I have created a cycle race:
sheetData = { width=69,height=99,750,count=8,numFrames=8,}
spriteSheet = graphics.newImageSheet(“media/frame-10.png” , sheetData)
sequenceData = {
{name=“charData”, frames={1,2,3,4,5,6,7,8}, count=8, time=600, loopCount=10000}
}
char=display.newSprite (spriteSheet,sequenceData)
char:setSequence(“charData”)
physics.addBody( char, { density=0, bounce=0, friction=1,} )
char.isFixedRotation = true
char.myName=“char”
--char:play()
char.y=280
char.x=50
A vertical image.
I also need to do an animation or slides, you can make the animation run from 1 to 8 and 9 to 12 slides? how can I set this in a single animation?