Tagged Questions
4
votes
2answers
886 views
Images are not displayed and showing error like “cocos2d: CCTexture2D: Using RGB565 texture since image has no alpha”
I am making an application using Box2D in which i am getting images from Asset Library and displaying them as sprites.
here is the code which i have done :
Getting Images from asset library :
...
1
vote
1answer
69 views
New Sprite Frame remains as same of previous Sprite Frame
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 ...
3
votes
2answers
5k views
How to switch the image of a CCSprite
I have a CCSprite that is initialized using [CCSprite spriteWithSpriteFrameName:@"plist_file_key_here.png"]. I have already added all the sprites from my plist file to CCSpriteFrameCache. I have tried ...