gpt4 book ai didi

ios - 如何为 sprite kit 实现触摸和按住?

转载 作者:可可西里 更新时间:2023-11-01 06:20:08 24 4
gpt4 key购买 nike

我最近开始使用 sprite-kit。我知道 touchesBegan 只需轻按一下即可,但我可以使用什么来识别按住的触摸吗?

最佳答案

如果你想实现像射击这样的东西,那么你需要在touchesBegan方法中开始射击,在touchesEnded方法中停止射击:

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
[self startShooting];
}

- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
[self stopShooting];
}

对于其他目的,您可以添加 UILongPressGestureRecognizerSKScene

关于ios - 如何为 sprite kit 实现触摸和按住?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21717574/

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