How to change the background color of a Layer in Cocos2D using CCColorLayer?

By | April 17, 2012

Set background color to magenta.

CCColorLayer* colorLayer = [CCColorLayer layerWithColor:ccc4(255, 0, 255, 255)];
[self addChild:colorLayer z:0];

//Changing the color of a sprite....

((CCSprite*)node).color = ccRED; // This will change the sprite color to RED.

Leave a Reply

Your email address will not be published. Required fields are marked *