我是 cocos2D 的新手,我有一个 640 X 1136 像素的图像,我将它静态设置为背景精灵。现在我想移动这个精灵,像向上移动背景一样连续移动。init
在方法中设置下面的代码。这是我的代码:
background = [CCSprite spriteWithFile:@"bgImagevertical.png"];
background.scaleX = 1;
background.scaleY = 1;
NSLog(@"size X :: %f && Y :: %f",size.width,size.height);
background.position = ccp(size.width/2,size.height/2);
[self addChild:background];