macaw-threejs
Version:
Macaw Three.js is ready to use library to connect Three.js with your project.<br/> Under the hood is a fully optimized, clean Three.js set up to make it easy to implement effects for images (future text, etc.). With effects out of the box, you don't even
17 lines (16 loc) • 503 B
TypeScript
import { Storage } from "./Core/Core.types";
import { SceneSettings } from "./Core/Scene/Scene.types";
export declare enum SCENE_TYPE {
fixed = "fixed",
absolute = "absolute"
}
export declare enum SCENE_DEFAULTS {
near = 70,
far = 2000,
cameraFov = 70,
positionZ = 600,
maxDPR = 1.75
}
export declare const RENDER_TIME = 0.5;
export declare const SCENE_SETTINGS_DEFAULTS: Omit<Required<SceneSettings>, "type">;
export declare const STORAGE_DEFAULTS: Storage;