UNPKG

@polygonjs/polygonjs

Version:

node-based WebGL 3D engine https://polygonjs.com

12 lines (11 loc) 791 B
import { Constructor } from '../../../../../types/GlobalTypes'; export declare function CameraWebXRParamConfig<TBase extends Constructor>(Base: TBase): { new (...args: any[]): { /** @param allows this camera to be used in AR (augmented reality) or VR (virtual reality) */ useWebXR: import("../../../utils/params/ParamsConfig").ParamTemplate<import("../../../../index_all").ParamType.BOOLEAN>; /** @param activates AR (augmented reality) */ useAR: import("../../../utils/params/ParamsConfig").ParamTemplate<import("../../../../index_all").ParamType.BOOLEAN>; /** @param activates VR (virtual reality) */ useVR: import("../../../utils/params/ParamsConfig").ParamTemplate<import("../../../../index_all").ParamType.BOOLEAN>; }; } & TBase;