swift – 如何检测SKSpriteNode是否被触摸

我试图检测我的精灵节点是否被触动,我不知道从哪里开始。
let Pineapple = SKSpriteNode(imageNamed: "Pineappleimg")
Pineapple.userInteractionEnabled = true
Pineapple.position = CGPoint(x: CGRectGetMidX(self.frame) - 200,y: CGRectGetMidY(self.frame));
self.addChild(Pineapple)
首先将SKSpriteNode的name属性设置为字符串。
pineapple.name = "pineapple"
pineapple.userInteractionEnabled = false

然后在场景中的touchesBegan功能

override func touchesBegan(touches: NSSet,withEvent event: UIEvent) {
    let touch:UITouch = touches.anyObject()! as UITouch
    let positionInScene = touch.locationInNode(self)
    let touchedNode = self.nodeAtPoint(positionInScene)

    if let name = touchedNode.name
    {
        if name == "pineapple"
        {
            print("Touched")
        }
    }

}

这是一种方法
您也可以将SKSpriteNode子类化并覆盖其中的touchesBegan。

class TouchableSpriteNode : SKSpriteNode
{
    override func touchesBegan(touches: NSSet,withEvent event: UIEvent) {
        print("touched")
    }
}

然后做

let pineapple = TouchableSpriteNode(imageNamed: "Pineappleimg")
pineapple.userInteractionEnabled = true
pineapple.position = CGPoint(x: CGRectGetMidX(self.frame) - 200,y: CGRectGetMidY(self.frame));
self.addChild(pineapple)

相关文章

Swift 正式开源!Swift 团队很高兴宣布 Swift 开始开源新篇章。自从苹果发布 Swfit 编程语言,就成为了...
快,快,快!动动您的小手,分享给更多朋友! 苹果去年推出了全新的编程语言Swift,试图让iOS开发更简单...
开发者(KaiFaX) 面向开发者、程序员的专业平台! 和今年年初承诺的一样,苹果贴出了Swift语言的源码,...
本文由@Chun发表于Chun Tips :http://chun.tips/blog/2014/12/11/shi-yong-swift-gou-jian-zi-ding-yi...
本文由CocoaChina译者leon(社区ID)翻译 原文:THE RIGHT WAY TO WRITE A SINGLETON 在之前的帖子里聊过...
本文由CocoaChina译者leon(社区ID)翻译 原文:THE RIGHT WAY TO WRITE A SINGLETON 在之前的帖子里聊过...