在我的游戏中,我有两个背景一个接一个地创建一个向左移动的连续循环。但是,现在一个去,另一个不跟随。
我无情地尝试了不同的数字,但似乎没有任何帮助。
谢谢你能给我的任何帮助。
if((self = [super init]))
{
self.isTouchEnabled = YES;
background=[CCSprite spriteWithFile:@"testbackground88.png"];
[self addChild:background z:1];
background.position=ccp(500,240);
id repeat1 =[CCRepeatForever actionWithAction:[CCSequence actions:
[CCMoveTo actionWithDuration:7 position:ccp(-300,240)],
[CCPlace actionWithPosition:ccp(800,240)],nil]];
[background runAction:repeat1];
background2=[CCSprite spriteWithFile:@"testbackground92.png"];
[self addChild:background2 z:1];
background2.position=ccp(500,240);
id repeat2 =[CCRepeatForever actionWithAction:[CCSequence actions:
[CCMoveTo actionWithDuration:7 position:ccp(-300,240)],
[CCPlace actionWithPosition:ccp(800,240)],nil]];
[background2 runAction:repeat2];
}