override func didMove(to view: SKView)
{
let blankScoreLabel = "SCORE: "
scoreLabel.fontSize = 45
scoreLabel.text = blankScoreLabel
scoreLabel.position = CGPoint(x: 2, y: 2)
scoreLabel.color = UIColor.red
self.addChild(scoreLabel)
}
This is inside the subclass of SKScene. For some reason this SKLabelNode will not show up in my view. Can someone help. If someone could also help me initialize the node in a .sks
file that would be helpful as well