Setting the file. One moment.
Skill 10 · Frost Sequence Camera Orbit
Subchapter 10.18
Also bundled
Frost Sequence Camera Orbitsource/src/assets.ts
TypeScript5 lines392 B
// FROST: the experiment served its assets from the site root (/textures, /fonts, /logo.svg ...). As a
// HyperFrames block they live in ./assets next to index.html, resolved relative to the composition document.
export const ASSET_BASE: string =
(typeof window !== "undefined" && (window as any).__frostAssetBase) || "assets/";
export const assetUrl = (name: string) => ASSET_BASE + name;