UITapGestureRecognizer - 检测点击位置是否有精灵 (swift)
UITapGestureRecognizer - Detecting if there's a sprite at tap location (swift)
我正在制作一个 iOS 游戏,需要知道如何获取 uitapgesturerecognizer 的点击位置。我 NOT 想使用 touchesBegan、touchesEnded 等。我还需要知道如何检查用户是否双击了精灵节点。我已经设置了 uitapgesturerecognizer,我只需要知道如何找到触摸的位置并查看它是否与 sprite 节点的位置相同。
非常感谢任何帮助!
假设您的 sprite 是 class 从 UIView 继承的(我认为它们通常是),手势识别器的处理函数应该如下所示。
func handleDoubleTap(gestureRecognizer: UITapGestureRecognizer) {
let tapLocation = gestureRecognizer.location(in: gestureRecognizer.view)
if mySprite.frame.contains(tapLocation){
print("tapped")
}
}
我正在制作一个 iOS 游戏,需要知道如何获取 uitapgesturerecognizer 的点击位置。我 NOT 想使用 touchesBegan、touchesEnded 等。我还需要知道如何检查用户是否双击了精灵节点。我已经设置了 uitapgesturerecognizer,我只需要知道如何找到触摸的位置并查看它是否与 sprite 节点的位置相同。
非常感谢任何帮助!
假设您的 sprite 是 class 从 UIView 继承的(我认为它们通常是),手势识别器的处理函数应该如下所示。
func handleDoubleTap(gestureRecognizer: UITapGestureRecognizer) {
let tapLocation = gestureRecognizer.location(in: gestureRecognizer.view)
if mySprite.frame.contains(tapLocation){
print("tapped")
}
}