在Xcode with SpriteKit中,在每个项目中我将showsNodeCount设置为true,但我只看到了fps。这太奇怪了。我无法弄清楚导致问题的原因。
if let scene = GameScene(fileNamed:"GameScene") {
// Configure the view.
let skView = self.view as! SKView
skView.showsFPS = true
skView.showsNodeCount = true
/* Sprite Kit applies additional optimizations to improve rendering performance */
skView.ignoresSiblingOrder = true
/* Set the scale mode to scale to fit the window */
scene.size = skView.bounds.size
skView.presentScene(scene)
}
也许是因为我正在使用Xcode 7 beta 3? (即使旧的贝塔同样存在问题)。