目前,我一直在寻找一款cocos2d游戏应用。我想显示从左到右滑动的分数以及在屏幕上从右到左滑动的按钮,此后游戏完成并且分数将在分数屏幕显示上显示给用户。
答案 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)做同样的事情也希望这个帮助