Last active
June 1, 2019 20:38
-
-
Save alexpersian/7b019302c16a2b5b2084665fcd090473 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SpriteKit | |
import PlaygroundSupport | |
let viewFrame = CGRect(x: 0, y: 0, width: 400, height: 400) | |
let view = SKView(frame: viewFrame) | |
let dvdNode = SKSpriteNode(imageNamed: "dvd-logo.png") | |
dvdNode.size = CGSize(width: 100, height: 47) | |
let mainScene = SKScene(size: view.frame.size) | |
mainScene.addChild(dvdNode) | |
mainScene.anchorPoint = CGPoint(x: 0.5, y: 0.5) // Set the origin to the mid-point of the scene | |
mainScene.backgroundColor = .black | |
view.presentScene(mainScene) | |
PlaygroundPage.current.liveView = view |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment