我的连续滚动代码......
NSArray *spaceDusts = [NSArray arrayWithObjects:_spacedust1, _spacedust2, nil];
for (CCSprite *spaceDust in spaceDusts) {
if ([_backgroundNode convertToWorldSpace:spaceDust.position].x < - spaceDust.contentSize.width) {
[_backgroundNode incrementOffset:ccp(2*spaceDust.contentSize.width,0) forChild:spaceDust];
}
}
背景图片尺寸为1024*384
当将它运行到模拟器中时,它可以正常工作,但是当我在设备(iphone)中使用时,
它会将背景设置为中心并花一些时间来加载图像
提前致谢.....