realitykit-ecs-systems
Installation
SKILL.md
RealityKit ECS Systems
Quick Start
- First verify that a documented RealityKit component cannot solve the
problem; use
realitykit-visionos-developercomponent selection when unsure. - Use a custom
Componentfor per-entity state and a customSystemfor continuous or multi-entity behavior. - Register custom components and systems once during app startup before any scene, asset, or Reality Composer Pro content that depends on them loads.
- Keep per-frame work in systems, not SwiftUI body code or ad hoc timers.
- Load the full ECS guide only when implementing or debugging real custom ECS code.