// lib/compose/index.ts // threejs-scenes/compose — assembling and interacting with a scene: scene // modules and view management, props and model loading, grouping/layout, // animation, skyboxing, raycasting and declarative event binding. The layer // between raw primitives and the view: it decides WHAT is in the scene and // how it responds, never how pixels are produced. export * from '../architecture/index.js' export * from '../props/index.js' export * from '../loaders/index.js' export * from '../animation/index.js' export * from '../geometry/group.js' export * from '../voxels/chunk-manager.js' export * from './skybox.js' export * from './scene-events.js'