Add window to menu to see if the user is authenticated (ToDo)

This commit is contained in:
Jakob Haag 2020-05-02 14:01:05 +02:00
parent 0a94e64a25
commit cdb4d69621

View File

@ -54,6 +54,13 @@ class MenuScene: SKScene {
node.position.x += (self.scene?.size.width)! * 3 node.position.x += (self.scene?.size.width)! * 3
} }
})) }))
}
// TODO: Notfalllösung
if(!GameCenterHelper.isAuthenticated) {
let label = SKLabelNode(text: "Authenticated")
label.zPosition = 2
label.position = CGPoint(x: self.size.width / 2, y: self.size.height / 2)
self.addChild(label)
}
}
} }