在cocos2d应用程序中从左到右的屏幕上的标签和按钮的动画

时间:2013-10-11 07:51:37

标签: ios objective-c animation cocos2d-iphone

目前,我一直在寻找一款cocos2d游戏应用。我想显示从左到右滑动的分数以及在屏幕上从右到左滑动的按钮,此后游戏完成并且分数将在分数屏幕显示上显示给用户。

1 个答案:

答案 0 :(得分:0)

你可以移动标签以及按钮从左向右移动你可以使用这个代码: -

.h中的

类: -

@property(nonatomic,retain)CCLabelTTF              *Result_lable;
.m类中的

: -

@synthesize Result_lable;

-(id)init
{
    if (self = [super init])
    {
    Result_lable = [CCLabelTTF labelWithString:@"lable" fontName:@"Arial" fontSize:24];
            Result_lable.position =ccp(160, 280);
            [self addChild:Result_lable];

     id move1 =[CCMoveBy actionWithDuration:1.0 position:ccp(0, 0)];

            id move2 = [CCMoveTo actionWithDuration:1.0 position:ccp(320, 0)];

            id repeat = [CCRepeatForever actionWithAction:[CCSequence actions:move1,move2, nil]];

            [Result_lable runAction:repeat];

    }
}

为Button(ccmenuItem)做同样的事情也希望这个帮助