CCLayerGradient色调

时间:2014-04-04 19:37:38

标签: ios iphone cocos2d-iphone cclayer

如何将CCTintToCCLayerGradient一起使用?当我在渐变图层上使用默认CCTintTo动作时,只有一种颜色在变化,但另一种颜色仍然相同。我怎么能一起改变它们?

任何帮助。谢谢。

1 个答案:

答案 0 :(得分:0)

 try this:

 CCObject* child;
 CCARRAY_FOREACH(layer->getChildren(), child)
 {
    CCSprite* allSpriteChild = (CCSprite*) child;
    allSpriteChild->setColor(layer->getColor());

 }