Hi I bought texturePacker and I trying it !
For some strange reason I can set a time param to slow down the animation
I can use SetFrame too.
But I can’t use both together !
local sheetInfo = require("star")
local myImageSheet = graphics.newImageSheet( "star.png", sheetInfo:getSheet() )
local sprite = display.newSprite(myImageSheet, {{frames={1, 2, 3, 4, 5, 6, 7, 8, 9, 10}, time=1000}});
sprite:setFrame(3)
sprite:play()
Here is the code.
The setFrame call stop the animation !
If I remove time = 1000 then it works !