Cocos2D-JS-Quick-Tutorials
Cocos2D-JS-Quick-Tutorials copied to clipboard
10 | Cocos2D-JS | How to Replace Sprites
10 | How to Replace Sprites
Set the source and tag of each sprite
this.initWithFile("res/01.png");
this.setTag("02");
this.initWithFile("res/02.png");
this.setTag("01");
Example replace the image with the touch
if (cc.rectContainsPoint(targetRectangle, location)) {
var tag = sprite.getTag();
sprite2.initWithFile("res/" + tag + ".png");
}