标签:
CCLayerColor 及 CCLayerGradient
CCLayerColor::initWithColor( ccc4( 255, 0, 0, 100 ) );
//CCLayerColor::initWithColor( ccc4( 255, 0, 0, 100 ), 100, 100 );
//ignoreAnchorPointForPosition( false );
class LayerGradient :public CCLayerGradient
{
public:
CREATE_FUNC( LayerGradient );
bool init( )
{
//CCLayerGradient::initWithColor( ccc4( 255, 0, 0, 255 ), ccc4( 0, 0, 255, 255 ) );
CCLayerGradient::initWithColor( ccc4( 255, 0, 0, 255 ), ccc4( 0, 0, 255, 255 ), ccp( 1, 0 ) );//横坚变了
return true;
}
};
1.06 CCLayerColor 及 CCLayerGradient
标签:
原文地址:http://www.cnblogs.com/nfking/p/5586145.html