How change the size of sprite in cocos2d? [closed]

Use the setScale method.

[sprite setScale:1.5];

In this case, the scale is set to 1.5 times.

Leave a Comment