Cocos2D-JS-Quick-Tutorials icon indicating copy to clipboard operation
Cocos2D-JS-Quick-Tutorials copied to clipboard

10 | Cocos2D-JS | How to Replace Sprites

Open Gurigraphics opened this issue 7 years ago • 0 comments

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"); 
    }

Gurigraphics avatar Apr 29 '18 22:04 Gurigraphics