Swift와 SpriteKit에서 Side Scroller Mario 같은 게임을 만들고 있습니다. 나는 현재 플레이어를 움직이고 있는데, 계속 클릭하고 나서 움직여야한다. 내가 바라는 것은 당신이 그것을 잡고 있으면 그것이 움직일 것이고 당신은 화면을 빠르게 클릭 할 필요가 없을 것입니다. 미리 감사드립니다 !!!!Continuous Touch/Moving Swift & SpriteKit
override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) {
for touch: AnyObject in touches {
let location = touch.locationInNode(self)
if location.y > 400{
move = true
}else{
if location.x < CGRectGetMidX(self.frame){
player.physicsBody?.applyImpulse(CGVector(dx: -30, dy: 0))
//tap somewhere above this to make character jump
if(location.y > 250) {
player.physicsBody?.applyImpulse(CGVector(dx: 0, dy: 200))
}
} else if location.x > CGRectGetMidX(self.frame){
player.physicsBody?.applyImpulse(CGVector(dx: 30, dy: 0))
//tap somewhere above this to make character jump
}
}
}
}
override func touchesEnded(touches: Set<UITouch>, withEvent event: UIEvent?) {
move = false
}
정말 잘 당신이 원하는 않는 것을 이해하지 않지만, 나는 몇 가지 코드를 작성하려고
한 번 움직이는 것처럼 보이지만 한 번만 움직입니다. 사용자가 손가락을 떼지 않는 한 계속해서 실행하고 싶습니까? – Shripada
예, javascript처럼 ** 기본적으로 ** mouseIsPressed **라는 bool 값이 있습니다. – ScarletStreak