index.ts 864 B

1234567891011121314151617181920212223242526272829
  1. import type { Scene } from "./_helpers";
  2. import { hyperspaceTunnel } from "./hyperspace-tunnel";
  3. import { orbitalChaos } from "./orbital-chaos";
  4. import { clockworkOrrery } from "./clockwork-orrery";
  5. import { deepSeaAbyss } from "./deep-sea-abyss";
  6. import { stormCell } from "./storm-cell";
  7. import { perpetualMotion } from "./perpetual-motion";
  8. import { floatingIslands } from "./floating-islands";
  9. import { productShowroom } from "./product-showroom";
  10. import { portalGallery } from "./portal-gallery";
  11. import { pipes } from "./pipes";
  12. import { mystify } from "./mystify";
  13. import { starfield } from "./starfield";
  14. export type { Scene };
  15. export const scenes: Scene[] = [
  16. hyperspaceTunnel,
  17. orbitalChaos,
  18. clockworkOrrery,
  19. deepSeaAbyss,
  20. stormCell,
  21. perpetualMotion,
  22. floatingIslands,
  23. productShowroom,
  24. portalGallery,
  25. pipes,
  26. mystify,
  27. starfield,
  28. ];