1.06 CCLayerColor 及 CCLayerGradient

CCLayerColor 及 CCLayerGradient

一、CCLayerColor




code
  1. CCLayerColor::initWithColor( ccc4( 255, 0, 0, 100 ) );
  2. //CCLayerColor::initWithColor( ccc4( 255, 0, 0, 100 ), 100, 100 );
  3. //ignoreAnchorPointForPosition( false );

二、CCLayerGradient




code
  1. class LayerGradient :public CCLayerGradient
  2. {
  3. public:
  4. CREATE_FUNC( LayerGradient );
  5. bool init( )
  6. {
  7. //CCLayerGradient::initWithColor( ccc4( 255, 0, 0, 255 ), ccc4( 0, 0, 255, 255 ) );
  8. CCLayerGradient::initWithColor( ccc4( 255, 0, 0, 255 ), ccc4( 0, 0, 255, 255 ), ccp( 1, 0 ) );//横坚变了
  9. return true;
  10. }
  11. };






posted @ 2016-06-15 08:18  -刀狂剑痴-  阅读(271)  评论(0编辑  收藏  举报