gpt4 book ai didi

swift - 如何快速停止 Sprite 套件更新?

转载 作者:搜寻专家 更新时间:2023-10-31 22:35:05 25 4
gpt4 key购买 nike

override func update(currentTime: NSTimeInterval) {
// ...
}

当我的游戏结束时,我想停止 sprite kit 的更新。

我应该在 swift 中使用哪个函数?

最佳答案

你可以使用 bool 就像当你的游戏结束时只是让 true 并将 if 条件放在你的更新方法中,如:

override func update(currentTime: NSTimeInterval) {
// It will execute till gameOver is false but when you make your gameOver true then it will not execute.
if !gameOver {

//Do your stuff
}
}

希望对您有所帮助。

关于swift - 如何快速停止 Sprite 套件更新?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31133200/

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