Skip to content

10 | Cocos2D-JS | How to Replace Sprites #11

@Gurigraphics

Description

@Gurigraphics

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions