Skip to content

Instantly share code, notes, and snippets.

@rdelrosario
Last active January 18, 2018 14:12
Show Gist options
  • Save rdelrosario/ebeea76ac2f517d50c95552213b9c61f to your computer and use it in GitHub Desktop.
Save rdelrosario/ebeea76ac2f517d50c95552213b9c61f to your computer and use it in GitHub Desktop.
ARKitSample - Start
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