cocos2d CCScene背景方向

时间:2012-12-25 05:11:37

标签: iphone objective-c ios cocos2d-iphone iphone-5

我正在尝试使用以下代码为我的场景添加背景图片:

    CCSprite* background = [CCSprite spriteWithFile:@"background-hd.png"];
    background.tag = 1;
    background.anchorPoint = CGPointMake(0,0);
    [self addChild:background];

我的应用方向是横向的,图像的方向也是风景,但是我将图像定位为肖像:

http://i.stack.imgur.com/ZIFnU.png

1 个答案:

答案 0 :(得分:1)

我认为这是使用Layer设置场景方向的解决方案......

+(CCScene *) scene
 {
CCScene *scene = [CCScene node];
StartLayer *layer = [StartLayer node];

CCSprite *background = [CCSprite spriteWithFile:@"background-hd.png"];
background.anchorPoint = ccp(0,0);

[layer addChild:background z:-1];
[scene addChild: layer];

return scene;
 }

请参阅此链接了解更多信息Cocos2d-Scenes-and-Layers ....

希望这对你有帮助......