Hi,
I have a menu inside a layer and I want to change the opacity of the layer over time. Here are my efforts so far.
in .h
CCLayerColor *retryMenuLayer;
and in .m file
`retryMenuLayer = [CCLayer node];
[self addChild:retryMenuLayer z:5];
retryMenuLayer.scale = 0.5;
[retryMenuLayer setOpacity:0];`
and while animating I'm trying to to this.
[retryMenuLayer runAction:[CCFadeIn actionWithDuration:0.3]];
Any help would be much appreciated.