GameScene无法在iPhone 5 / 5S上正确渲染

时间:2016-02-23 20:30:43

标签: ios swift sprite-kit

我想在我的GameScene中显示背景图片。当我去运行它时,除了iPhone 5 / 5S之外,它在每个设备上都能正常显示。下面是屏幕截图,显示了iPhone 4s和iPhone 5在模拟器上的样子。

iPhone 4s Screenshot

iPhone 5 Screenshot

这就是我展示背景图片的方式:

    // set background image
    let backgroundImage = SKSpriteNode(imageNamed: "bg")
    backgroundImage.position = CGPointMake(frame.size.width/2, frame.size.height/2)
    addChild(backgroundImage)

我在模拟器和实际设备上测试过它仍然存在这个问题。

0 个答案:

没有答案