XR Part 1

Download

Unity Cheat Sheet: #47

AR Image Tracking

  • Get reference image data with arTrackedImage.referenceImage
  • Measure detected image dimensions with arTrackedImage.size
  • Check current tracking quality with arTrackedImage.trackingState
  • Access position and rotation using arTrackedImage.transform

Face Tracking

  • Toggle face detection with arFaceManager.enabled
  • Access all detected faces through arFaceManager.trackables
  • Assign visual representation with arFaceManager.facePrefab
  • Configure tracking system with arFaceManager.maximumFaceCount
  • Check hardware maximum capacity with arFaceManager.supportedFaceCount

Face Mesh Properties

  • Access face geometry points with arFace.vertices
  • Get surface orientation data from arFace.normals
  • Access triangle connections through arFace.indices
  • Apply textures correctly using arFace.uvs
  • Track eye positions with arFace.leftEye and arFace.rightEye (ARKit only)

AR Session Management

  • Completely restart tracking with ARSession.Reset()
  • Toggle AR functionality with arSession.enabled
  • Monitor current status with ARSession.state
  • Diagnose tracking issues with ARSession.notTrackingReason
  • Optimize performance using arSession.matchFrameRate

Plane Detection

  • Toggle surface finding with arPlaneManager.enabled
  • Set detection orientation with arPlaneManager.requestedDetectionMode (behavior varies by platform)
  • Access all detected surfaces through arPlaneManager.trackables
  • Define visual appearance using arPlaneManager.planePrefab
  • Check active detection settings with arPlaneManager.currentDetectionMode

AR Plane Properties

  • Get outline points with arPlane.boundary
  • Determine orientation using arPlane.alignment
  • Find middle position with arPlane.center
  • Get half-size measurements from arPlane.extents
  • Access dimensions through arPlane.size

Image Reference Management

  • Assign trackable images with arTrackedImageManager.referenceLibrary
  • Toggle image detection with arTrackedImageManager.enabled
  • Access all detected images via arTrackedImageManager.trackables
  • Optimize performance with arTrackedImageManager.maxNumberOfMovingImages
  • Set visual representation using arTrackedImageManager.trackedImagePrefab

Show More