Я использую этот touch.tapCount в touchesBegan и пытаюсь напечатать значение, но оно никогда не возвращает 2.
Есть идеи, почему?Это может быть 1,3, 5,7,9, .... но не 2,4,6,8,10, ...
override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
if let touch = touches.first {
//print(touch.tapCount)
if ((touch.tapCount) == 1) {
player.animatedPlayer()
jump = true
}
}
}