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");
}
10 | How to Replace Sprites
Set the source and tag of each sprite
Example replace the image with the touch