私のゲームでは、左に移動する連続ループを作成する 2 つの背景が交互に表示されます。しかし、今は片方が進み、もう片方が従わない。
私は容赦なく別の番号を試しましたが、何も役に立たないようです。
あなたが私に与えることができるどんな助けにも感謝します.
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];
}