TouchedEnded over TouchesBegan - Swift iOS SpriteKit

时间:2015-02-10 00:34:40

标签: swift ontouchevent

我会有一个触摸开始(它带你到一个单独的场景)但我也有一个SKSpriteNode设置,当你触摸它时,你会去一个不同的场景。这是我的代码,用于查找是否已触及settingsPage节点。

override func touchesEnded(touches: NSSet, withEvent event: UIEvent) {
    let touch = touches.anyObject() as UITouch
    let touchLocation = touch.locationInNode(self)

    if (settingsPage .containsPoint(touchLocation))
    {
        println("Going to Settings")
        settingsScene()
    }   
}

出于某种原因,触摸开始优先于touchesEnded。

他们是否可以绕过这个或?

 override func touchesBegan(touches: NSSet, withEvent event: UIEvent) {
    /* Called when a touch begins */


    let touch = touches.anyObject() as UITouch
    let touchLocation = touch.locationInNode(self)

    if (settingsPage .containsPoint(touchLocation))
    {
        println("Going to Settings")
        settingsScene()
   }






    game1 = 1

    if (Menu == 0) {
        movingObjects.speed = 1
        birdPhysics()
        let action = SKAction.rotateByAngle(CGFloat(-M_PI), duration:0.8)
        bird.runAction(SKAction.repeatActionForever(action))



        taptoflap.removeFromParent()

        started = 1

        if (powerupStatus == 1) {
            PUten = NSTimer.scheduledTimerWithTimeInterval(8, target: self, selector: Selector("plustenSpawn"), userInfo: nil, repeats: true)
        }

    }

    if (gameOver == 0) {




        bird.physicsBody?.velocity = CGVectorMake(0, 0)
        bird.physicsBody?.applyImpulse(CGVectorMake(0, impulse))



        // Add 1 to the currentTouches
        currentTouches++

        Menu = 1

    } else {
        scoreLabel.text = "0"
        bird.physicsBody?.velocity = CGVectorMake(0,0)
        settingsPage.removeFromParent()
        gameOver = 0                                                                                
        movingObjects.speed = 1
        // Animate Bird
        var animation = SKAction.animateWithTextures([birdTexture, birdTexture2, birdTexture3, birdTexture4], timePerFrame: 0.08)
        var makeBirdFlap = SKAction.repeatActionForever(animation)
        bird.runAction(makeBirdFlap)
        bird.texture = birdDeadTexture
        normButton.removeFromSuperview()
        highscoreClassic.removeFromParent()

        let height = self.frame.size.height
        let width = self.frame.size.width

        var speedGameScene: SpeedGameScene = SpeedGameScene(size: CGSizeMake(width, height))
        var spriteView: SKView = self.view as SKView!
        var trans:SKTransition = SKTransition.doorsCloseHorizontalWithDuration(0.7)
        spriteView.presentScene(speedGameScene, transition: trans)

    }
}

1 个答案:

答案 0 :(得分:1)

return中的代码后加touchesBegan,不执行其余代码。

if (settingsPage.containsPoint(touchLocation))
{
    println("Going to Settings")
    settingsScene()
    return
}