我在GameViewController中制作了游戏菜单。然后,当按下Go按钮时,我尝试移动到GameScene。我使用默认代码来呈现GameScene文件。
if let scene = GameScene(fileNamed:"GameScene") {
// Configure the view.
let skView = self.view as! SKView
skView.showsFPS = false
skView.showsNodeCount = false
/* Sprite Kit applies additional optimizations to improve rendering performance */
skView.ignoresSiblingOrder = true
/* Set the scale mode to scale to fit the window */
scene.scaleMode = .AspectFill
skView.presentScene(scene)
}
我在故事板中制作了菜单。我认为这就是它无法正常工作的原因。我该如何解决这个问题?
尼尔
答案 0 :(得分:0)
在SpriteKit中我们使用场景,GameScene在GameViewController上面。 GameViewController向您展示GameScene。