gpt4 book ai didi

xcode - 检测何时在 SKScene 中触摸按钮?

转载 作者:搜寻专家 更新时间:2023-11-01 06:23:21 25 4
gpt4 key购买 nike

我创建了一个 Storyboard并添加了一个带有两个按钮的场景。我不知道如何知道我的 GameScene.swift 类上的按钮何时被按下。

如何做到这一点?

enter image description here

最佳答案

你可以为此touchesBegan

这是为您准备的示例代码:

override func touchesBegan(touches: NSSet, withEvent event: UIEvent) {

for touch: AnyObject in touches{
let location = touch.locationInNode(self)
if self.nodeAtPoint(location) == self.playButton{

//your code
}
}
}

关于xcode - 检测何时在 SKScene 中触摸按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29442423/

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