realitykit
dpearson2699/swift-ios-skills
Build iOS AR and 3D experiences with RealityKit and ARKit integration.
What is realitykit?
RealityKit is Apple's framework for rendering 3D content and AR experiences on iOS. Use it when you need to display 3D models, anchor objects to real-world surfaces, handle AR interactions, or build immersive AR apps with gesture support and scene understanding.
- Load and display 3D models from USDZ files and procedurally generated meshes
- Anchor entities to detected planes, world positions, or ARKit raycast results
- Perform entity hit tests and raycasting within the virtual scene
- Handle gesture-based interactions on 3D objects with collision and input targeting
- Manage AR camera availability and world tracking with fallback to virtual camera mode
- Apply physics, materials, and components to entities using the ECS architecture
How to install realitykit
npx skills add https://github.com/dpearson2699/swift-ios-skills --skill realitykit- iOS 18+ or visionOS 1+ (RealityView support)
- Swift 6.3 or later
- NSCameraUsageDescription added to Info.plist
- Device with A9 chip or later for AR features
How to use realitykit
- 1.Create a RealityView with RealityViewCameraContent to host AR content
- 2.Check ARWorldTrackingConfiguration.isSupported to verify AR availability
- 3.Load 3D models using ModelEntity(named:) or create procedural meshes
- 4.Add CollisionComponent and InputTargetComponent to entities for interaction
- 5.Use AnchorEntity to attach content to detected planes or world positions
- 6.Implement gestures by combining RealityView raycasting with SwiftUI gesture modifiers
Use cases
- Place virtual furniture or objects on real floors and walls in AR
- Create interactive 3D scenes where users can drag and manipulate objects
- Build AR apps that detect surfaces and anchor content to them
- Implement object picking and selection via raycasting in AR experiences
- Display 3D models with proper lighting and materials in immersive scenes
- iOS app developers building AR experiences
- Swift developers creating 3D interactive content
- Teams building location-based or surface-aware AR applications
realitykit FAQ
RealityKit's hitTest() and ray() methods query virtual entities in the scene for picking and interaction. ARKit's raycast() detects real-world surfaces. Use RealityKit raycasting for entity selection and ARKit raycasting when you need to detect physical surfaces for placement.
Use AnchorEntity with plane classification: AnchorEntity(.plane(.horizontal, classification: .floor)) for floors, or .plane(.vertical) for walls. For custom positions, use AnchorEntity(.world(transform:)) or anchor to ARKit raycast results with AnchorEntity(raycastResult:).
Check ARWorldTrackingConfiguration.isSupported before presenting AR UI. Set content.camera = .virtual to fall back to a non-AR 3D view, or show an unsupported message.
Add CollisionComponent with a shape and InputTargetComponent to the entity. Then use RealityView's hitTest() in a SwiftUI gesture handler to detect which entity was touched and respond accordingly.
Yes, use ModelEntity(named:) to load USDZ files from your app bundle. You can also create procedural meshes with .generateBox(), .generateSphere(), etc., or load models asynchronously with try await.
Full instructions (SKILL.md)
Source of truth, from dpearson2699/swift-ios-skills.
name: realitykit description: "Build iOS augmented reality and 3D experiences with RealityKit and ARKit. Use when adding RealityView content, loading entities or USDZ models, anchoring objects to planes or world positions, distinguishing entity hit tests from ARKit real-world raycasts, handling AR camera availability, world tracking, scene updates, or RealityKit entity gestures and interactions."
RealityKit
Build AR experiences on iOS using RealityKit for rendering and ARKit for world
tracking. Covers RealityView, entity management, raycasting, scene
understanding, and gesture-based interactions. Targets Swift 6.3 / iOS 26+.
Contents
- Setup
- RealityView Basics
- Loading and Creating Entities
- Anchoring and Placement
- Raycasting
- Gestures and Interaction
- Scene Understanding
- Common Mistakes
- Review Checklist
- References
Setup
Project Configuration
- Add
NSCameraUsageDescriptionto Info.plist - On iOS,
RealityViewCameraContentdisplays an AR camera view by default (iOS 18+, macOS 15+); use.virtualcamera mode for explicit non-AR fallback - No entitlement is required for basic AR. If AR is core to the app, add the
arkitrequired-device capability; otherwise gate AR UI withisSupported.
Device Requirements
AR features require devices with an A9 chip or later. Always check
ARWorldTrackingConfiguration.isSupported before presenting AR UI.
import ARKit
guard ARWorldTrackingConfiguration.isSupported else {
showUnsupportedDeviceMessage()
return
}
Key Types
| Type | Platform | Role |
|---|---|---|
RealityView | iOS 18+, visionOS 1+ | SwiftUI view that hosts RealityKit content |
RealityViewCameraContent | iOS 18+, macOS 15+ | Content displayed through an AR camera view on iOS, non-AR on macOS |
Entity | All | Base class for all scene objects |
ModelEntity | All | Entity with a visible 3D model |
AnchorEntity | All | Tethers entities to a real-world anchor |
RealityView Basics
RealityView is the SwiftUI entry point for RealityKit.
RealityViewCameraContent is the iOS/macOS content type. On iOS, it uses an AR
camera view by default and can use content.camera = .virtual for non-AR mode
when requested or when AR/camera access is unavailable.
import ARKit
import SwiftUI
import RealityKit
struct ARExperienceView: View {
var body: some View {
RealityView { (content: RealityViewCameraContent) in
if !ARWorldTrackingConfiguration.isSupported {
content.camera = .virtual
}
let sphere = ModelEntity(
mesh: .generateSphere(radius: 0.05),
materials: [SimpleMaterial(
color: .blue,
isMetallic: true
)]
)
sphere.position = [0, 0, -0.5] // 50cm in front of camera
content.add(sphere)
}
}
}
Make and Update Pattern
Use the update closure to respond to SwiftUI state changes:
struct PlacementView: View {
@State private var modelColor: UIColor = .red
var body: some View {
RealityView { content in
let box = ModelEntity(
mesh: .generateBox(size: 0.1),
materials: [SimpleMaterial(
color: .red,
isMetallic: false
)]
)
box.name = "colorBox"
box.position = [0, 0, -0.5]
content.add(box)
} update: { content in
if let box = content.entities.first(
where: { $0.name == "colorBox" }
) as? ModelEntity {
box.model?.materials = [SimpleMaterial(
color: modelColor,
isMetallic: false
)]
}
}
Button("Change Color") {
modelColor = modelColor == .red ? .green : .red
}
}
}
Loading and Creating Entities
Loading from USDZ Files
Load 3D models asynchronously to avoid blocking the main thread:
RealityView { content in
if let robot = try? await ModelEntity(named: "robot") {
robot.position = [0, -0.2, -0.8]
robot.scale = [0.01, 0.01, 0.01]
content.add(robot)
}
}
Adding Components
Entities use an ECS (Entity Component System) architecture. Add components to give entities behavior:
let box = ModelEntity(
mesh: .generateBox(size: 0.1),
materials: [SimpleMaterial(color: .red, isMetallic: false)]
)
// Make it respond to physics
box.components.set(PhysicsBodyComponent(
massProperties: .default,
material: .default,
mode: .dynamic
))
// Add collision shape for interaction
box.components.set(CollisionComponent(
shapes: [.generateBox(size: [0.1, 0.1, 0.1])]
))
// Enable input targeting for gestures
box.components.set(InputTargetComponent())
Anchoring and Placement
AnchorEntity
Use AnchorEntity to anchor content to detected surfaces or world positions:
RealityView { content in
// Anchor to a horizontal surface
let floorAnchor = AnchorEntity(.plane(
.horizontal,
classification: .floor,
minimumBounds: [0.2, 0.2]
))
let model = ModelEntity(
mesh: .generateBox(size: 0.1),
materials: [SimpleMaterial(color: .orange, isMetallic: false)]
)
floorAnchor.addChild(model)
content.add(floorAnchor)
}
Anchor Targets
| Target | Description |
|---|---|
.plane(.horizontal, ...) | Horizontal surfaces (floors, tables) |
.plane(.vertical, ...) | Vertical surfaces (walls) |
.plane(.any, ...) | Any detected plane |
.world(transform:) | Fixed world-space position |
Raycasting
Keep RealityKit scene queries separate from ARKit real-world raycasts:
RealityViewCameraContent.ray(through:in:to:)returns a camera ray in RealityKit coordinate spaces. It projects a screen point into the virtual scene; it is not proof of a detected physical surface.RealityViewCameraContent.hitTest(point:in:query:mask:)hits virtual entities made hittable byCollisionComponentshapes. Use those shapes for entity picking and targeted gestures, not ARKit plane detection.- Use
AnchorEntity(.plane(...))for simple placement on detected planes. - Use ARKit
ARRaycastQueryplusARSession.raycast(_:)when the task needs a one-shot intersection with real-world surfaces, then anchor withAnchorEntity(raycastResult:).
let results = session.raycast(query)
if let result = results.first {
let anchor = AnchorEntity(raycastResult: result)
anchor.addChild(model)
content.add(anchor)
}
Do not treat entity hit tests as substitutes for ARKit surface raycasts.
Gestures and Interaction
For gesture-based entity interaction, add CollisionComponent for the hittable
shape and InputTargetComponent for input targeting. Use
AccessibilityComponent for entity labels/actions. Hand detailed SwiftUI gesture
composition and VoiceOver/Switch Control policy to sibling skills.
Drag Gesture on Entities
struct DraggableARView: View {
var body: some View {
RealityView { content in
let box = ModelEntity(
mesh: .generateBox(size: 0.1),
materials: [SimpleMaterial(color: .blue, isMetallic: true)]
)
box.position = [0, 0, -0.5]
box.components.set(CollisionComponent(
shapes: [.generateBox(size: [0.1, 0.1, 0.1])]
))
box.components.set(InputTargetComponent())
box.name = "draggable"
content.add(box)
}
.gesture(
DragGesture()
.targetedToAnyEntity()
.onChanged { value in
let entity = value.entity
guard let parent = entity.parent else { return }
entity.position = value.convert(
value.location3D,
from: .local,
to: parent
)
}
)
}
}
For selection, CollisionComponent is the mechanism that makes an entity
hittable by RealityViewCameraContent.hitTest, SpatialTapGesture, or
targetedToAnyEntity(). Pair it with InputTargetComponent; this enables
virtual entity picking, not ARKit surface detection.
Scene Understanding
Per-Frame Updates
Subscribe to scene update events for continuous processing:
RealityView { content in
let entity = ModelEntity(
mesh: .generateSphere(radius: 0.05),
materials: [SimpleMaterial(color: .yellow, isMetallic: false)]
)
entity.position = [0, 0, -0.5]
content.add(entity)
_ = content.subscribe(to: SceneEvents.Update.self) { event in
let time = Float(event.deltaTime)
entity.position.y += sin(Float(Date().timeIntervalSince1970)) * time * 0.1
}
}
Platform Boundaries
On visionOS, ARKit provides a different API surface with ARKitSession,
WorldTrackingProvider, and PlaneDetectionProvider. These visionOS-specific
types are not available on iOS. On iOS, RealityKit handles world tracking
automatically through RealityViewCameraContent.
For iOS architecture or migration notes, explicitly name the iOS RealityKit path and handoffs:
- Gate AR with
ARWorldTrackingConfiguration.isSupported. - Host content with
RealityViewCameraContent. - Build scenes from
Entity/ModelEntityand place withAnchorEntity. - Include a compact
Handoffsline in architecture/review notes:CollisionComponent+InputTargetComponenthandle RealityKit interaction;AccessibilityComponenthandles RealityKit entity accessibility metadata; detailed SwiftUI gestures and VoiceOver/Switch Control policy belong to siblings.
Treat existing SCNView/SCNNode work as either a separate SceneKit path or an
explicit migration to RealityKit, not a mixed scene graph.
Common Mistakes
DON'T: Skip AR capability checks
Not all devices support AR. Showing a black camera view with no feedback confuses users.
// WRONG -- no device check
struct MyARView: View {
var body: some View {
RealityView { content in
// Fails silently on unsupported devices
}
}
}
// CORRECT -- check support and show fallback
struct MyARView: View {
var body: some View {
if ARWorldTrackingConfiguration.isSupported {
RealityView { content in
// AR content
}
} else {
ContentUnavailableView(
"AR Not Supported",
systemImage: "arkit",
description: Text("This device does not support AR.")
)
}
}
}
DON'T: Load heavy models synchronously
Loading large USDZ files on the main thread causes frame drops and hangs.
The make closure of RealityView is async -- use it.
// WRONG -- synchronous load blocks the main thread
RealityView { content in
let model = try! Entity.load(named: "large-scene")
content.add(model)
}
// CORRECT -- async load
RealityView { content in
if let model = try? await ModelEntity(named: "large-scene") {
content.add(model)
}
}
DON'T: Forget collision and input target components for interactive entities
Gestures only work on entities that have both CollisionComponent and
InputTargetComponent. Without them, taps and drags pass through.
// WRONG -- entity ignores gestures
let box = ModelEntity(mesh: .generateBox(size: 0.1))
content.add(box)
// CORRECT -- add collision and input components
let box = ModelEntity(
mesh: .generateBox(size: 0.1),
materials: [SimpleMaterial(color: .red, isMetallic: false)]
)
box.components.set(CollisionComponent(
shapes: [.generateBox(size: [0.1, 0.1, 0.1])]
))
box.components.set(InputTargetComponent())
content.add(box)
DON'T: Create new entities in the update closure
The update closure runs on every SwiftUI state change. Creating entities
there duplicates content on each render pass.
// WRONG -- duplicates entities on every state change
RealityView { content in
// empty
} update: { content in
let sphere = ModelEntity(mesh: .generateSphere(radius: 0.05))
content.add(sphere) // Added again on every update
}
// CORRECT -- create in make, modify in update
RealityView { content in
let sphere = ModelEntity(mesh: .generateSphere(radius: 0.05))
sphere.name = "mySphere"
content.add(sphere)
} update: { content in
if let sphere = content.entities.first(
where: { $0.name == "mySphere" }
) as? ModelEntity {
// Modify existing entity
sphere.position.y = newYPosition
}
}
DON'T: Ignore camera permission
RealityKit on iOS needs camera access. If the user denies permission, the view shows a black screen with no explanation.
// WRONG -- no permission handling
RealityView { content in
// Black screen if camera denied
}
// CORRECT -- check and request permission
struct ARContainerView: View {
@State private var cameraAuthorized = false
var body: some View {
Group {
if cameraAuthorized {
RealityView { content in
// AR content
}
} else {
ContentUnavailableView(
"Camera Access Required",
systemImage: "camera.fill",
description: Text("Enable camera in Settings to use AR.")
)
}
}
.task {
let status = AVCaptureDevice.authorizationStatus(for: .video)
if status == .authorized {
cameraAuthorized = true
} else if status == .notDetermined {
cameraAuthorized = await AVCaptureDevice
.requestAccess(for: .video)
}
}
}
}
Review Checklist
-
NSCameraUsageDescriptionset in Info.plist - AR device capability checked before presenting AR views
- Camera permission requested and denial handled with a fallback UI
-
arkitrequired-device capability added when AR is the app's core purpose - 3D models loaded asynchronously in the
makeclosure - Entities created in
make, modified inupdate(not created inupdate) - Interaction notes say
CollisionComponentmakes entities hittable/pickable and pairs withInputTargetComponent - Boundary/review notes include a
Handoffsline namingAccessibilityComponentand routing detailed SwiftUI/accessibility policy to siblings - Entity hit tests,
RealityViewCameraContent.ray(...), and ARKit real-world surface raycasts are not conflated - ARKit surface raycast placements use
ARSession.raycast(_:)andAnchorEntity(raycastResult:) -
SceneEvents.Updatesubscriptions used for per-frame logic (not SwiftUI timers) - Large scenes use
ModelEntity(named:)async loading, notEntity.load(named:) - Anchor entities target appropriate surface types for the use case
- Entity names set for lookup in the
updateclosure
References
- Read references/realitykit-patterns.md for physics, animations, lighting, ECS, accessibility, and performance patterns.
- RealityKit framework
- RealityView
- RealityViewCameraContent
- RealityViewCamera
- Entity
- ModelEntity
- AnchorEntity
- ARKit framework
- ARKit in iOS
- Verifying Device Support and User Permission
- ARWorldTrackingConfiguration
- ARRaycastQuery
- ARSession.raycast(_:)
- Loading entities from a file
Related skills
More from dpearson2699/swift-ios-skills and the wider catalog.

relevancekit
Increase Apple Watch widget visibility using contextual relevance signals for time, location, fitness, and hardware.

scenekit
Maintain and extend existing SceneKit 3D scenes; soft-deprecated, use for legacy apps only.

sensorkit
Access research-grade sensor data from iOS/watchOS for Apple-approved studies.

shareplay-activities
Build shared real-time experiences with GroupActivities and SharePlay on iOS, macOS, tvOS, and visionOS.

speech-recognition
Transcribe speech to text on iOS using Apple's Speech framework with live microphone and file support.

spritekit
Build 2D games and animations with SpriteKit for iOS using scenes, sprites, physics, and SwiftUI integration.