我正在创建一个需要在节点上粘贴标签的游戏,因为我将其用作按钮,并且按钮四处移动。有人知道如何将标签附加到SpriteKit节点吗?
答案 0 :(得分:0)
有SKLabel
,您可以使用它
let scoreLabel = SKLabelNode(fontNamed: "Chalkduster")
scoreLabel.text = "Score: 0"
scoreLabel.horizontalAlignmentMode = .right
scoreLabel.position = CGPoint(x: 980, y: 700)
addChild(scoreLabel)
答案 1 :(得分:0)
您需要研究SpriteKit中的父节点和子节点。您的标签最终将成为SKLabel和您的按钮的孩子点头。这样,它将与其父级一起移动,缩放,旋转等。