Created
April 22, 2018 23:10
-
-
Save PaulWall43/f8839e141bc385b26b1c7752de5d1b4f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| //Perform before we run the session | |
| override func viewDidLoad() { | |
| super.viewDidLoad() | |
| //Load the scene from art.scnassets folder (important to put your assets in this folder) | |
| guard let scene = SCNScene(named: "art.scnassets/main.scn") else {return} | |
| //Set the scene property of our ARSCNView to our custom scene | |
| sceneView.scene = scene | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment