gpt4 book ai didi

swift - 暂停和恢复 SpriteKit 游戏

转载 作者:行者123 更新时间:2023-11-30 13:32:09 25 4
gpt4 key购买 nike

当我单击暂停按钮时,我被引导到另一个 View Controller ,该 Controller 应该是“暂停菜单”。当我单击暂停菜单中的“恢复”时,我会被引导回游戏,但游戏不会继续,而是会重新启动。有人能帮我吗 ?我是初学者,所以请提供尽可能多的解释,谢谢!这是在我的 gameViewController 中

    @IBAction func pauseGame(sender: AnyObject) {

scene.view!.paused = true



}

这是在我的“pauseMenu” View Controller 中

 @IBAction func resumeGame(sender: AnyObject) {
func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?)
{
if segue.identifier == "pauseToGame" {
let destinationController = segue.destinationViewController as! GameViewController

destinationController.scene.view!.paused = false

}
}

最佳答案

我试图避免将 prepareForSegue 与 SpriteKit 一起使用,但如果你真的需要它 seems here is what you need

关于swift - 暂停和恢复 SpriteKit 游戏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36456004/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com