Skip to content

Instantly share code, notes, and snippets.

@alexpersian
Last active June 1, 2019 20:38
Show Gist options
  • Save alexpersian/7b019302c16a2b5b2084665fcd090473 to your computer and use it in GitHub Desktop.
Save alexpersian/7b019302c16a2b5b2084665fcd090473 to your computer and use it in GitHub Desktop.
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