I'm making an app in which I'm using SKLabelNode. I would like to put a border around it.
This is my code sofar:
SKLabelNode *scoreLabel;
scoreLabel = [SKLabelNode labelNodeWithFontNames:@"Helvetica-Bold"];
scoreLabel.text = @"@";
scoreLabel.alpha = 1;
scoreLabel.fontSize = 30;
scoreLabel.position = CGPointMake(149,525);
[self addChild:scoreLabel];
Also, would anyone know how to use a custom font for this?
Say I make my own font, and then want to put a border around it, how would I do this?