Introduction to Aug
Welcome to Aug, the runtime for spatial computing on Apple platforms. Aug makes it effortless to build immersive, AI-powered experiences that feel native to visionOS.
What is Aug?
Aug is a comprehensive framework that unifies ARKit, RealityKit, Core ML, and SwiftUI into a single, declarative API. It's designed to help you build production-ready spatial computing applications faster.
Key Benefits
Quick Start
Get started with Aug in minutes:
swift
1import Aug
2
3@main
4struct MyApp: App {
5 var body: some Scene {
6 AugmentedSpace {
7 SpatialView {
8 Model3D(named: "scene")
9 .augIntelligence(.environmentAware)
10 }
11 }
12 }
13}