I try really hard with searching the forums and the documentation and the sample projects, but I couldn’t find anything.
I have an animation, which I want to use twice on the same screen.
[code]local sheet = sprite.newSpriteSheet( “images/myimage.png”, 32, 32 )
local spriteSet = sprite.newSpriteSet(sheet, 1, 7)
sprite.add( spriteSet, “eyes”, 1, 7, 200, 0 ) – play 15 frames every 200 ms
local instance = sprite.newSprite( spriteSet )
instance1.x = 128
instance1.y = 128
instance1:prepare(“eyes”)
instance1:play()[/code]
If I add a second local instance with other coordinates, my image will be shown twice, but the animation plays only on the first one.
Any help, please? [import]uid: 6587 topic_id: 5703 reply_id: 305703[/import]