I want to load the font once and use it for the other sklabel nodes
let originalLabel: SKLabelNode = SKLabelNode(fontNamed: "fontName");
and later
var labelNode = originalLabel;
var labelNodeSecond = originalLabel;
but that gives the following error
Attemped to add a SKNode which already has a parent: SKLabelNode