2016-06-17 4 views
0

私はswiftとspritekitで小さなゲームを作っています。私は現在、メニューに取り組んでおり、SKNodeのサブクラスであるButtonとしてSKButtonNodeというカスタムButtonclassを作っています。私が "userInteractionEnabled = true"を使用しても、私の電話機のボタンをクリックすると何も起こりません。では、ボタンに触れると「test2」が表示されませんが、ボタンの隣に表示されるのはなぜですか。Swift/Spritekitタッチ時にSKNodeが検出されない

class SKButtonNode: SKNode { 
    var defaultButton: SKSpriteNode 
    var activeButton: SKSpriteNode 
    var action:() -> Void 

    init(defaultButtonImage: String, activeButtonImage: String, buttonAction: () -> Void) { 
     defaultButton = SKSpriteNode(imageNamed: defaultButtonImage) 
     activeButton = SKSpriteNode(imageNamed: activeButtonImage) 
     activeButton.hidden = true 
     action = buttonAction 

     super.init() 

     userInteractionEnabled = true 
     addChild(defaultButton) 
     addChild(activeButton) 
    } 

class MenuScene: SKScene, SKPhysicsContactDelegate { 

var startGameButton: SKButtonNode! 
var optionsGameButton: SKButtonNode! 
var exitGameButton: SKButtonNode! 


// Update time 
var lastUpdateTimeInterval: NSTimeInterval = 0 


override func didMoveToView(view: SKView) { 
    // Setup physics world's contact delegate 
    physicsWorld.contactDelegate = self 
    let startGameButton = SKButtonNode(defaultButtonImage: "blue_button_up", activeButtonImage: "blue_button_down" , buttonAction: startGame) 

    startGameButton.position = CGPoint(x: 640, y: 330) 
    startGameButton.activeButton.size = CGSize(width: 360, height: 95) 
    startGameButton.defaultButton.size = CGSize(width: 360, height: 95) 
    startGameButton.name = "startGameButton" 


    let startOptionsButton = SKButtonNode(defaultButtonImage: "blue_button_up", activeButtonImage: "blue_button_down" , buttonAction: startGame) 

    startOptionsButton.position = CGPoint(x: 640, y: 210) 
    startOptionsButton.activeButton.size = CGSize(width: 360, height: 95) 
    startOptionsButton.defaultButton.size = CGSize(width: 360, height: 95) 
    startOptionsButton.name = "startOptionsButton" 

    let exitGameButton = SKButtonNode(defaultButtonImage: "blue_button_up", activeButtonImage: "blue_button_down" , buttonAction: startGame) 

    exitGameButton.position = CGPoint(x: 640, y: 90) 
    exitGameButton.activeButton.size = CGSize(width: 360, height: 95) 
    exitGameButton.defaultButton.size = CGSize(width: 360, height: 95) 
    exitGameButton.name = "exitGameButton" 

    addChild(startGameButton) 
    addChild(startOptionsButton) 
    addChild(exitGameButton) 


} 
func exitGame() { 

} 

func startOptions(){ 

} 

func startGame() { 
    print("test") 
} 

override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) { 
    let location = touches.first!.locationInNode(self) 
    let node = self.nodeAtPoint(location) 
    print("test2") 
    if (node.name == "startGameButton") { 
     let currentNode = node as! SKButtonNode 
     currentNode.activeButton.hidden = false 
     currentNode.defaultButton.hidden = true 
    } 

} 

override func touchesMoved(touches: Set<UITouch>, withEvent event: UIEvent?) { 
    let location = touches.first!.locationInNode(self) 
    let node = self.nodeAtPoint(location) 
    if (node.name == "startGameButton") { 
     let currentNode = node as! SKButtonNode 
     if currentNode.defaultButton.containsPoint(location) { 
      currentNode.activeButton.hidden = false 
      currentNode.defaultButton.hidden = true 
     } else { 
      currentNode.activeButton.hidden = true 
      currentNode.defaultButton.hidden = false 
     } 
    } 

} 


override func touchesEnded(touches: Set<UITouch>, withEvent event: UIEvent?) { 
    let location = touches.first!.locationInNode(self) 
    let node = self.nodeAtPoint(location) 
    print("test3") 
    if (node.name == "startGameButton") { 
     let currentNode = node as! SKButtonNode 
     if currentNode.defaultButton.containsPoint(location) { 
      startGame() 
     } 
     currentNode.activeButton.hidden = true 
     currentNode.defaultButton.hidden = false 
    } 
} 
+0

ここで(あなたのコードで)touchesBegun、touchesMovedとtouchesEndedはどこにありますか? – Confused

答えて

1

ボタンの操作を実際に実行していないようです。 touchesBeganでボタンを押したときに行っていることは、trueまたはfalse.hiddenプロパティを設定しています。

override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) { 

    let location = touches.first!.locationInNode(self) 
    let node = self.nodeAtPoint(location) 

    print("test2") 

    if (node.name == "startGameButton") { 
     let currentNode = node as! SKButtonNode 

     self.runAction(currentNode.action) 

     currentNode.activeButton.hidden = false 
     currentNode.defaultButton.hidden = true 
    } 
} 
+0

私は決してtouchesBeganメソッドに入ることはない、それは私の問題です – Mikinho90

+0

touchesBeganメソッドの最上部にprintステートメントまたはブレークポイントを入れましたか? – claassenApps

関連する問題