gaia-camera
Installation
SKILL.md
Camera
Inspiration for building camera movement and behavior. All examples use minimal ECS systems — see /docs/entity-component-system.md for the full pattern.
Convention: Positive pitch = look up, positive yaw = look left. Use Euler(pitch, yaw, 0, 'YXZ') order.
First Person Camera
export class FirstPersonCameraSystem extends createSystem({}) {
private pitch = 0
private yaw = 0
private headOffset = new Vector3(0, 1.7, 0)