gpt4 book ai didi

ios - UITapGestureRecognizer - 检测点击位置是否有 Sprite (快速)

转载 作者:可可西里 更新时间:2023-11-01 02:02:14 27 4
gpt4 key购买 nike

我正在制作 iOS 游戏,需要知道如何获取 uitapgesturerecognizer 的点击位置。我不想想使用 touchesBegan、touchesEnded 等。我还需要知道如何检查用户是否双击了 sprite 节点。我已经设置了 uitapgesturerecognizer,我只需要知道如何找到触摸的位置并查看它是否与 sprite 节点的位置相同。

非常感谢任何帮助!

最佳答案

假设您的 sprite 是从 UIView 继承的类(我认为它们通常是),手势识别器的处理函数应该如下所示。

func handleDoubleTap(gestureRecognizer: UITapGestureRecognizer) {

let tapLocation = gestureRecognizer.location(in: gestureRecognizer.view)
if mySprite.frame.contains(tapLocation){
print("tapped")
}

}

关于ios - UITapGestureRecognizer - 检测点击位置是否有 Sprite (快速),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45536111/

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