Last active
January 18, 2018 14:12
-
-
Save rdelrosario/ebeea76ac2f517d50c95552213b9c61f to your computer and use it in GitHub Desktop.
ARKitSample - Start
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
public override void ViewDidLoad() | |
{ | |
base.ViewDidLoad(); | |
// Set self as the Scene View's delegate | |
SceneView.Delegate = this; | |
// Track changes to the session | |
SceneView.Session.Delegate = new SessionDelegate(); | |
SceneView.Scene.PhysicsWorld.ContactDelegate = new PhysicsDelegate(); | |
SceneView.AutomaticallyUpdatesLighting = true; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment