@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
24 lines (23 loc) • 665 B
TypeScript
export declare enum SelfContainedFileName {
EXPORT_MANIFEST = "scene/export_manifest.json",
CODE_PREFIX = "scene/code",
PROPERTIES = "scene/code/properties.json",
EDITOR = "scene/editor.json",
ASSETS = "scene/assets.json",
POLYGONJS = "js/all.js",
SCENE_DATA_LOADER = "js/sceneDataLoader.js",
POLY_CONFIG = "js/polyConfig.js",
JS_FILES = "scene/js_files.json",
POSTER = "images/poster.png"
}
export type JsFilesManifest = {
modules: string[];
};
export interface SelfContainedManifestContent {
source: string;
useConfigureScene: boolean;
version: {
polygonjs: string;
editor: string;
};
}