UNPKG

@polygonjs/polygonjs

Version:

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

29 lines (28 loc) 1.49 kB
/** * allows the viewer created by this camera to be accessible in WebXR for AR (augmented reality) * * */ import { TypedSopNode } from './_Base'; import { CoreGroup } from '../../../core/geometry/Group'; import { HierarchyParamConfigAll } from '../utils/params/ParamsConfig'; import { CameraSopNodeType } from '../../poly/NodeContext'; declare const CameraWebXRARSopParamsConfig_base: { new (...args: any[]): { hitTest: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.INTEGER>; lightEstimation: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.INTEGER>; cameraAccess: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.INTEGER>; overrideReferenceSpaceType: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.BOOLEAN>; referenceSpaceType: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.INTEGER>; }; } & typeof HierarchyParamConfigAll; declare class CameraWebXRARSopParamsConfig extends CameraWebXRARSopParamsConfig_base { } export declare class CameraWebXRARSopNode extends TypedSopNode<CameraWebXRARSopParamsConfig> { readonly paramsConfig: CameraWebXRARSopParamsConfig; static type(): CameraSopNodeType; protected initializeNode(): void; private _operation; cook(inputCoreGroups: CoreGroup[]): void; } export {};