gpt4 book ai didi

swift - 添加触摸开始处的节点

转载 作者:行者123 更新时间:2023-11-30 12:54:08 24 4
gpt4 key购买 nike

我正在使用 Swift 制作游戏。我需要在按下屏幕的地方添加节点,我知道这不是来自其他星球,但我做不到。

最佳答案

高度简化的示例可能如下所示:

override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
guard let touch = touches.first else { return }
let location = touch.location(in: self)
let node = SKNode()
node.position = location
addChild(node)
}

关于swift - 添加触摸开始处的节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40619020/

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