1
我有兩個場景:家庭和遊戲。與過渡到主場景相比,過渡到場景真的很慢。我認爲這是因爲我的比賽場面更多。有什麼方法可以預先加載場景嗎?或者讓過渡更加無縫?緩慢Skscene轉換
我對這個論壇的答案感興趣Preload a Scene to prevent lag? 但我不知道從哪裏開始。我在哪裏放置部分和B部分的答案
這裏是我使用
override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) {
let touch = touches
let location = touch.first!.locationInNode(self)
let node = self.nodeAtPoint(location)
if (node.name == "Balloon") {
let sceneAction = SKAction.runBlock({
let secondScene = Scene2(size: self.size)
let transition = SKTransition.fadeWithDuration(1)
secondScene.scaleMode = SKSceneScaleMode.AspectFill
self.scene!.view?.presentScene(secondScene, transition: transition)
})
PlayButton.runAction(SKAction.sequence([sound,SKAction.animateWithTextures(array, timePerFrame: 0.1),sceneAction,SKAction.waitForDuration(1)]))
}
什麼任何其他解決辦法是罰款。
感謝
嘿感謝的響應。我爲swift 3試了這個,它不起作用。你能否更新你的答案? – Yraw
@Yraw檢查更新 –
它給我一個錯誤「Gameconfiguration沒有成員級別」。 – Yraw