| 1234567891011121314151617181920212223242526272829 |
- import type { Scene } from "./_helpers";
- import { hyperspaceTunnel } from "./hyperspace-tunnel";
- import { orbitalChaos } from "./orbital-chaos";
- import { clockworkOrrery } from "./clockwork-orrery";
- import { deepSeaAbyss } from "./deep-sea-abyss";
- import { stormCell } from "./storm-cell";
- import { perpetualMotion } from "./perpetual-motion";
- import { floatingIslands } from "./floating-islands";
- import { productShowroom } from "./product-showroom";
- import { portalGallery } from "./portal-gallery";
- import { pipes } from "./pipes";
- import { mystify } from "./mystify";
- import { starfield } from "./starfield";
- export type { Scene };
- export const scenes: Scene[] = [
- hyperspaceTunnel,
- orbitalChaos,
- clockworkOrrery,
- deepSeaAbyss,
- stormCell,
- perpetualMotion,
- floatingIslands,
- productShowroom,
- portalGallery,
- pipes,
- mystify,
- starfield,
- ];
|