目前我正在通过以下方法添加我的背景。我怎样才能修改背景,使其与瓷砖地图一起自动滚动。
- (void)setupParallax {
NSString *backgroundName = [self.tilemap propertyNamed:@"BackgroundImage"];
CCSprite *background = [CCSprite spriteWithFile:[AssetHelper
getDeviceSpecificFileNameFor:[NSString stringWithFormat:@"background-%@.png",backgroundName]]];
background.anchorPoint = ccp(0,0);
background.position = CGPointMake(0, 0);
[self addChild:background z:0];
}