I am beginner in the Cocos2D gaming. When I change the Sprite with

[sprite setTexture:[[CCTextureCache sharedTextureCache] addImage:@"anotherSprite.png"]];

When I am changing this image in the scheduler it takes the previous sprite Frame rather than new one. How can I use the new Sprite image into the Previous Sprite Image Object

link|improve this question

60% accept rate
feedback

1 Answer

Is your the sprite frame you'd like to use already in the cache?

Use

    [sprite setDisplayFrame:[[CCSpriteFrameCache sharedSpriteFrameCache] spriteFrameByName:@"newSprite.png"]]
link|improve this answer
Thanks for the Reply... but I wanted to know whether it uses the Atlas Sprite or Sprite Sheet? I am unable to get the frame of the image. @James Webster – Marine Jan 5 at 4:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.