我有一个CCLayer
用于暂停菜单的类,在该类中我有 menuitems 。我刚刚添加了菜单,它显示在屏幕上,但没有动画。我想在图层上添加过渡效果,因为我们可以在场景中做到这一点。或者像我们在 sprite 中那样添加动作。我只想让我的暂停菜单从上到下进行动画处理。
这是我如何添加我的CClayer
课程。
menuLayer = [[PauseMenu alloc] initWithParent:self];
[self addChild:menuLayer z:99];
我已尝试使用此代码进行操作,但它不起作用
menuLayer = [[PauseMenu alloc] initWithParent:self];
[self addChild:menuLayer z:99];
id move=[CCMoveTo actionWithDuration:5.1 position:ccp(240,120)];
[menuLayer runAction:move];