Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
Gurigraphics opened this issue Apr 29, 2018 · 0 comments
Open

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

Gurigraphics opened this issue Apr 29, 2018 · 0 comments

Comments

@Gurigraphics
Copy link
Owner

Gurigraphics commented Apr 29, 2018

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"); 
    }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant