我想通过点击精灵来跳转图像,而不是点击屏幕使其跳跃。
SYSTEM
答案 0 :(得分:0)
如果触摸精灵,这是一种非常基本的测试方法
顺便说一下,你的变量被命名为足球专有术语,说你应该使用小写变量名称" football"
override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
if let touch = touches.first as UITouch! {
let touchLocation = touch.location(in: self)
if Football.contains(touchLocation) {
//jump code here
}
}
}