@needle-tools/three 0.169.12 → 0.169.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -2
- package/types/build/three.d.cts +1 -0
- package/types/build/three.module.d.ts +1 -0
- package/types/build/three.module.min.d.ts +1 -0
- package/types/build/three.webgpu.d.ts +1 -0
- package/types/build/three.webgpu.min.d.ts +1 -0
- package/types/build/three.webgpu.nodes.d.ts +1 -0
- package/types/build/three.webgpu.nodes.min.d.ts +1 -0
- package/types/examples/jsm/Addons.d.ts +292 -0
- package/types/examples/jsm/animation/AnimationClipCreator.d.ts +12 -0
- package/types/examples/jsm/animation/CCDIKSolver.d.ts +43 -0
- package/types/examples/jsm/animation/MMDAnimationHelper.d.ts +95 -0
- package/types/examples/jsm/animation/MMDPhysics.d.ts +124 -0
- package/types/examples/jsm/cameras/CinematicCamera.d.ts +34 -0
- package/types/examples/jsm/capabilities/WebGL.d.ts +17 -0
- package/types/examples/jsm/capabilities/WebGPU.d.ts +7 -0
- package/types/examples/jsm/controls/ArcballControls.d.ts +203 -0
- package/types/examples/jsm/controls/DragControls.d.ts +111 -0
- package/types/examples/jsm/controls/FirstPersonControls.d.ts +101 -0
- package/types/examples/jsm/controls/FlyControls.d.ts +44 -0
- package/types/examples/jsm/controls/MapControls.d.ts +21 -0
- package/types/examples/jsm/controls/OrbitControls.d.ts +251 -0
- package/types/examples/jsm/controls/PointerLockControls.d.ts +86 -0
- package/types/examples/jsm/controls/TrackballControls.d.ts +142 -0
- package/types/examples/jsm/controls/TransformControls.d.ts +249 -0
- package/types/examples/jsm/csm/CSM.d.ts +55 -0
- package/types/examples/jsm/csm/CSMFrustum.d.ts +19 -0
- package/types/examples/jsm/csm/CSMHelper.d.ts +27 -0
- package/types/examples/jsm/csm/CSMShader.d.ts +4 -0
- package/types/examples/jsm/curves/CurveExtras.d.ts +68 -0
- package/types/examples/jsm/curves/NURBSCurve.d.ts +17 -0
- package/types/examples/jsm/curves/NURBSSurface.d.ts +13 -0
- package/types/examples/jsm/curves/NURBSUtils.d.ts +146 -0
- package/types/examples/jsm/curves/NURBSVolume.d.ts +23 -0
- package/types/examples/jsm/effects/AnaglyphEffect.d.ts +17 -0
- package/types/examples/jsm/effects/AsciiEffect.d.ts +18 -0
- package/types/examples/jsm/effects/OutlineEffect.d.ts +28 -0
- package/types/examples/jsm/effects/ParallaxBarrierEffect.d.ts +11 -0
- package/types/examples/jsm/effects/PeppersGhostEffect.d.ts +10 -0
- package/types/examples/jsm/effects/StereoEffect.d.ts +9 -0
- package/types/examples/jsm/environments/DebugEnvironment.d.ts +5 -0
- package/types/examples/jsm/environments/RoomEnvironment.d.ts +6 -0
- package/types/examples/jsm/exporters/DRACOExporter.d.ts +17 -0
- package/types/examples/jsm/exporters/EXRExporter.d.ts +27 -0
- package/types/examples/jsm/exporters/GLTFExporter.d.ts +123 -0
- package/types/examples/jsm/exporters/KTX2Exporter.d.ts +7 -0
- package/types/examples/jsm/exporters/MMDExporter.d.ts +7 -0
- package/types/examples/jsm/exporters/OBJExporter.d.ts +7 -0
- package/types/examples/jsm/exporters/PLYExporter.d.ts +30 -0
- package/types/examples/jsm/exporters/STLExporter.d.ts +21 -0
- package/types/examples/jsm/exporters/USDZExporter.d.ts +21 -0
- package/types/examples/jsm/geometries/BoxLineGeometry.d.ts +12 -0
- package/types/examples/jsm/geometries/ConvexGeometry.d.ts +5 -0
- package/types/examples/jsm/geometries/DecalGeometry.d.ts +10 -0
- package/types/examples/jsm/geometries/ParametricGeometries.d.ts +32 -0
- package/types/examples/jsm/geometries/ParametricGeometry.d.ts +18 -0
- package/types/examples/jsm/geometries/RoundedBoxGeometry.d.ts +5 -0
- package/types/examples/jsm/geometries/TeapotGeometry.d.ts +37 -0
- package/types/examples/jsm/geometries/TextGeometry.d.ts +123 -0
- package/types/examples/jsm/helpers/LightProbeHelper.d.ts +12 -0
- package/types/examples/jsm/helpers/LightProbeHelperGPU.d.ts +12 -0
- package/types/examples/jsm/helpers/OctreeHelper.d.ts +17 -0
- package/types/examples/jsm/helpers/PositionalAudioHelper.d.ts +13 -0
- package/types/examples/jsm/helpers/RectAreaLightHelper.d.ts +10 -0
- package/types/examples/jsm/helpers/TextureHelper.d.ts +10 -0
- package/types/examples/jsm/helpers/VertexNormalsHelper.d.ts +12 -0
- package/types/examples/jsm/helpers/VertexTangentsHelper.d.ts +12 -0
- package/types/examples/jsm/helpers/ViewHelper.d.ts +17 -0
- package/types/examples/jsm/interactive/HTMLMesh.d.ts +6 -0
- package/types/examples/jsm/interactive/InteractiveGroup.d.ts +20 -0
- package/types/examples/jsm/interactive/SelectionBox.d.ts +16 -0
- package/types/examples/jsm/interactive/SelectionHelper.d.ts +17 -0
- package/types/examples/jsm/libs/fflate.module.d.ts +1 -0
- package/types/examples/jsm/libs/lil-gui.module.min.d.ts +608 -0
- package/types/examples/jsm/libs/meshopt_decoder.module.d.ts +1 -0
- package/types/examples/jsm/libs/stats.module.d.ts +3 -0
- package/types/examples/jsm/libs/tween.module.d.ts +2 -0
- package/types/examples/jsm/lights/LightProbeGenerator.d.ts +10 -0
- package/types/examples/jsm/lights/RectAreaLightTexturesLib.d.ts +7 -0
- package/types/examples/jsm/lights/RectAreaLightUniformsLib.d.ts +5 -0
- package/types/examples/jsm/lines/Line2.d.ts +25 -0
- package/types/examples/jsm/lines/LineGeometry.d.ts +27 -0
- package/types/examples/jsm/lines/LineMaterial.d.ts +82 -0
- package/types/examples/jsm/lines/LineSegments2.d.ts +37 -0
- package/types/examples/jsm/lines/LineSegmentsGeometry.d.ts +53 -0
- package/types/examples/jsm/lines/Wireframe.d.ts +11 -0
- package/types/examples/jsm/lines/WireframeGeometry2.d.ts +8 -0
- package/types/examples/jsm/lines/webgpu/Line2.d.ts +14 -0
- package/types/examples/jsm/lines/webgpu/LineSegments2.d.ts +15 -0
- package/types/examples/jsm/loaders/3DMLoader.d.ts +10 -0
- package/types/examples/jsm/loaders/3MFLoader.d.ts +9 -0
- package/types/examples/jsm/loaders/AMFLoader.d.ts +7 -0
- package/types/examples/jsm/loaders/BVHLoader.d.ts +14 -0
- package/types/examples/jsm/loaders/ColladaLoader.d.ts +11 -0
- package/types/examples/jsm/loaders/DDSLoader.d.ts +22 -0
- package/types/examples/jsm/loaders/DRACOLoader.d.ts +25 -0
- package/types/examples/jsm/loaders/EXRLoader.d.ts +19 -0
- package/types/examples/jsm/loaders/FBXLoader.d.ts +7 -0
- package/types/examples/jsm/loaders/FontLoader.d.ts +41 -0
- package/types/examples/jsm/loaders/GCodeLoader.d.ts +8 -0
- package/types/examples/jsm/loaders/GLTFLoader.d.ts +153 -0
- package/types/examples/jsm/loaders/HDRCubeTextureLoader.d.ts +18 -0
- package/types/examples/jsm/loaders/IESLoader.d.ts +5 -0
- package/types/examples/jsm/loaders/KMZLoader.d.ts +9 -0
- package/types/examples/jsm/loaders/KTX2Loader.d.ts +54 -0
- package/types/examples/jsm/loaders/KTXLoader.d.ts +22 -0
- package/types/examples/jsm/loaders/LDrawLoader.d.ts +19 -0
- package/types/examples/jsm/loaders/LUT3dlLoader.d.ts +39 -0
- package/types/examples/jsm/loaders/LUTCubeLoader.d.ts +42 -0
- package/types/examples/jsm/loaders/LUTImageLoader.d.ts +18 -0
- package/types/examples/jsm/loaders/LWOLoader.d.ts +19 -0
- package/types/examples/jsm/loaders/LottieLoader.d.ts +14 -0
- package/types/examples/jsm/loaders/MD2Loader.d.ts +7 -0
- package/types/examples/jsm/loaders/MDDLoader.d.ts +12 -0
- package/types/examples/jsm/loaders/MMDLoader.d.ts +56 -0
- package/types/examples/jsm/loaders/MTLLoader.d.ts +94 -0
- package/types/examples/jsm/loaders/MaterialXLoader.d.ts +5 -0
- package/types/examples/jsm/loaders/NRRDLoader.d.ts +15 -0
- package/types/examples/jsm/loaders/OBJLoader.d.ts +10 -0
- package/types/examples/jsm/loaders/PCDLoader.d.ts +8 -0
- package/types/examples/jsm/loaders/PDBLoader.d.ts +15 -0
- package/types/examples/jsm/loaders/PLYLoader.d.ts +11 -0
- package/types/examples/jsm/loaders/PVRLoader.d.ts +16 -0
- package/types/examples/jsm/loaders/RGBELoader.d.ts +19 -0
- package/types/examples/jsm/loaders/RGBMLoader.d.ts +37 -0
- package/types/examples/jsm/loaders/STLLoader.d.ts +7 -0
- package/types/examples/jsm/loaders/SVGLoader.d.ts +64 -0
- package/types/examples/jsm/loaders/TDSLoader.d.ts +35 -0
- package/types/examples/jsm/loaders/TGALoader.d.ts +7 -0
- package/types/examples/jsm/loaders/TIFFLoader.d.ts +16 -0
- package/types/examples/jsm/loaders/TTFLoader.d.ts +10 -0
- package/types/examples/jsm/loaders/USDZLoader.d.ts +11 -0
- package/types/examples/jsm/loaders/UltraHDRLoader.d.ts +21 -0
- package/types/examples/jsm/loaders/VOXLoader.d.ts +21 -0
- package/types/examples/jsm/loaders/VRMLLoader.d.ts +7 -0
- package/types/examples/jsm/loaders/VTKLoader.d.ts +7 -0
- package/types/examples/jsm/loaders/XYZLoader.d.ts +7 -0
- package/types/examples/jsm/materials/MeshGouraudMaterial.d.ts +16 -0
- package/types/examples/jsm/materials/MeshPostProcessingMaterial.d.ts +13 -0
- package/types/examples/jsm/math/Capsule.d.ts +26 -0
- package/types/examples/jsm/math/ColorConverter.d.ts +19 -0
- package/types/examples/jsm/math/ConvexHull.d.ts +89 -0
- package/types/examples/jsm/math/ImprovedNoise.d.ts +4 -0
- package/types/examples/jsm/math/Lut.d.ts +27 -0
- package/types/examples/jsm/math/MeshSurfaceSampler.d.ts +21 -0
- package/types/examples/jsm/math/OBB.d.ts +24 -0
- package/types/examples/jsm/math/Octree.d.ts +29 -0
- package/types/examples/jsm/math/SimplexNoise.d.ts +9 -0
- package/types/examples/jsm/misc/ConvexObjectBreaker.d.ts +25 -0
- package/types/examples/jsm/misc/GPUComputationRenderer.d.ts +55 -0
- package/types/examples/jsm/misc/Gyroscope.d.ts +5 -0
- package/types/examples/jsm/misc/MD2Character.d.ts +33 -0
- package/types/examples/jsm/misc/MD2CharacterComplex.d.ts +55 -0
- package/types/examples/jsm/misc/MorphAnimMesh.d.ts +13 -0
- package/types/examples/jsm/misc/MorphBlendMesh.d.ts +21 -0
- package/types/examples/jsm/misc/ProgressiveLightMap.d.ts +60 -0
- package/types/examples/jsm/misc/RollerCoaster.d.ts +26 -0
- package/types/examples/jsm/misc/Timer.d.ts +80 -0
- package/types/examples/jsm/misc/TubePainter.d.ts +10 -0
- package/types/examples/jsm/misc/Volume.d.ts +37 -0
- package/types/examples/jsm/misc/VolumeSlice.d.ts +28 -0
- package/types/examples/jsm/modifiers/CurveModifier.d.ts +41 -0
- package/types/examples/jsm/modifiers/CurveModifierGPU.d.ts +31 -0
- package/types/examples/jsm/modifiers/EdgeSplitModifier.d.ts +26 -0
- package/types/examples/jsm/modifiers/SimplifyModifier.d.ts +6 -0
- package/types/examples/jsm/modifiers/TessellateModifier.d.ts +9 -0
- package/types/examples/jsm/objects/GroundedSkybox.d.ts +5 -0
- package/types/examples/jsm/objects/Lensflare.d.ts +21 -0
- package/types/examples/jsm/objects/LensflareMesh.d.ts +21 -0
- package/types/examples/jsm/objects/MarchingCubes.d.ts +76 -0
- package/types/examples/jsm/objects/Reflector.d.ts +21 -0
- package/types/examples/jsm/objects/ReflectorForSSRPass.d.ts +62 -0
- package/types/examples/jsm/objects/Refractor.d.ts +21 -0
- package/types/examples/jsm/objects/ShadowMesh.d.ts +10 -0
- package/types/examples/jsm/objects/Sky.d.ts +28 -0
- package/types/examples/jsm/objects/SkyMesh.d.ts +17 -0
- package/types/examples/jsm/objects/Water.d.ts +22 -0
- package/types/examples/jsm/objects/Water2.d.ts +21 -0
- package/types/examples/jsm/objects/Water2Mesh.d.ts +42 -0
- package/types/examples/jsm/objects/WaterMesh.d.ts +31 -0
- package/types/examples/jsm/physics/AmmoPhysics.d.ts +9 -0
- package/types/examples/jsm/physics/JoltPhysics.d.ts +10 -0
- package/types/examples/jsm/physics/RapierPhysics.d.ts +12 -0
- package/types/examples/jsm/postprocessing/AfterimagePass.d.ts +14 -0
- package/types/examples/jsm/postprocessing/BloomPass.d.ts +14 -0
- package/types/examples/jsm/postprocessing/BokehPass.d.ts +23 -0
- package/types/examples/jsm/postprocessing/ClearPass.d.ts +9 -0
- package/types/examples/jsm/postprocessing/CubeTexturePass.d.ts +14 -0
- package/types/examples/jsm/postprocessing/DotScreenPass.d.ts +10 -0
- package/types/examples/jsm/postprocessing/EffectComposer.d.ts +31 -0
- package/types/examples/jsm/postprocessing/FilmPass.d.ts +10 -0
- package/types/examples/jsm/postprocessing/GTAOPass.d.ts +121 -0
- package/types/examples/jsm/postprocessing/GlitchPass.d.ts +16 -0
- package/types/examples/jsm/postprocessing/HalftonePass.d.ts +37 -0
- package/types/examples/jsm/postprocessing/LUTPass.d.ts +13 -0
- package/types/examples/jsm/postprocessing/MaskPass.d.ts +14 -0
- package/types/examples/jsm/postprocessing/OutlinePass.d.ts +64 -0
- package/types/examples/jsm/postprocessing/OutputPass.d.ts +10 -0
- package/types/examples/jsm/postprocessing/Pass.d.ts +31 -0
- package/types/examples/jsm/postprocessing/RenderPass.d.ts +23 -0
- package/types/examples/jsm/postprocessing/RenderPixelatedPass.d.ts +30 -0
- package/types/examples/jsm/postprocessing/RenderTransitionPass.d.ts +33 -0
- package/types/examples/jsm/postprocessing/SAOPass.d.ts +70 -0
- package/types/examples/jsm/postprocessing/SMAAPass.d.ts +21 -0
- package/types/examples/jsm/postprocessing/SSAARenderPass.d.ts +26 -0
- package/types/examples/jsm/postprocessing/SSAOPass.d.ts +68 -0
- package/types/examples/jsm/postprocessing/SSRPass.d.ts +122 -0
- package/types/examples/jsm/postprocessing/SavePass.d.ts +12 -0
- package/types/examples/jsm/postprocessing/ShaderPass.d.ts +11 -0
- package/types/examples/jsm/postprocessing/TAARenderPass.d.ts +8 -0
- package/types/examples/jsm/postprocessing/TexturePass.d.ts +12 -0
- package/types/examples/jsm/postprocessing/UnrealBloomPass.d.ts +31 -0
- package/types/examples/jsm/renderers/CSS2DRenderer.d.ts +23 -0
- package/types/examples/jsm/renderers/CSS3DRenderer.d.ts +26 -0
- package/types/examples/jsm/renderers/Projector.d.ts +60 -0
- package/types/examples/jsm/renderers/SVGRenderer.d.ts +26 -0
- package/types/examples/jsm/shaders/ACESFilmicToneMappingShader.d.ts +11 -0
- package/types/examples/jsm/shaders/AfterimageShader.d.ts +12 -0
- package/types/examples/jsm/shaders/BasicShader.d.ts +6 -0
- package/types/examples/jsm/shaders/BleachBypassShader.d.ts +10 -0
- package/types/examples/jsm/shaders/BlendShader.d.ts +13 -0
- package/types/examples/jsm/shaders/BokehShader.d.ts +21 -0
- package/types/examples/jsm/shaders/BokehShader2.d.ts +44 -0
- package/types/examples/jsm/shaders/BrightnessContrastShader.d.ts +12 -0
- package/types/examples/jsm/shaders/ColorCorrectionShader.d.ts +13 -0
- package/types/examples/jsm/shaders/ColorifyShader.d.ts +10 -0
- package/types/examples/jsm/shaders/ConvolutionShader.d.ts +17 -0
- package/types/examples/jsm/shaders/CopyShader.d.ts +10 -0
- package/types/examples/jsm/shaders/DOFMipMapShader.d.ts +13 -0
- package/types/examples/jsm/shaders/DepthLimitedBlurShader.d.ts +28 -0
- package/types/examples/jsm/shaders/DigitalGlitch.d.ts +19 -0
- package/types/examples/jsm/shaders/DotScreenShader.d.ts +13 -0
- package/types/examples/jsm/shaders/ExposureShader.d.ts +11 -0
- package/types/examples/jsm/shaders/FXAAShader.d.ts +11 -0
- package/types/examples/jsm/shaders/FilmShader.d.ts +12 -0
- package/types/examples/jsm/shaders/FocusShader.d.ts +14 -0
- package/types/examples/jsm/shaders/FreiChenShader.d.ts +11 -0
- package/types/examples/jsm/shaders/GTAOShader.d.ts +59 -0
- package/types/examples/jsm/shaders/GammaCorrectionShader.d.ts +9 -0
- package/types/examples/jsm/shaders/GodRaysShader.d.ts +44 -0
- package/types/examples/jsm/shaders/HalftoneShader.d.ts +22 -0
- package/types/examples/jsm/shaders/HorizontalBlurShader.d.ts +10 -0
- package/types/examples/jsm/shaders/HorizontalTiltShiftShader.d.ts +12 -0
- package/types/examples/jsm/shaders/HueSaturationShader.d.ts +12 -0
- package/types/examples/jsm/shaders/KaleidoShader.d.ts +12 -0
- package/types/examples/jsm/shaders/LuminosityHighPassShader.d.ts +15 -0
- package/types/examples/jsm/shaders/LuminosityShader.d.ts +10 -0
- package/types/examples/jsm/shaders/MMDToonShader.d.ts +15 -0
- package/types/examples/jsm/shaders/MirrorShader.d.ts +11 -0
- package/types/examples/jsm/shaders/NormalMapShader.d.ts +13 -0
- package/types/examples/jsm/shaders/OutputShader.d.ts +11 -0
- package/types/examples/jsm/shaders/PoissonDenoiseShader.d.ts +28 -0
- package/types/examples/jsm/shaders/RGBShiftShader.d.ts +11 -0
- package/types/examples/jsm/shaders/SAOShader.d.ts +29 -0
- package/types/examples/jsm/shaders/SMAAShader.d.ts +43 -0
- package/types/examples/jsm/shaders/SSAOShader.d.ts +49 -0
- package/types/examples/jsm/shaders/SSRShader.d.ts +62 -0
- package/types/examples/jsm/shaders/SepiaShader.d.ts +10 -0
- package/types/examples/jsm/shaders/SobelOperatorShader.d.ts +11 -0
- package/types/examples/jsm/shaders/SubsurfaceScatteringShader.d.ts +38 -0
- package/types/examples/jsm/shaders/TechnicolorShader.d.ts +10 -0
- package/types/examples/jsm/shaders/ToonShader.d.ts +54 -0
- package/types/examples/jsm/shaders/TriangleBlurShader.d.ts +11 -0
- package/types/examples/jsm/shaders/UnpackDepthRGBAShader.d.ts +11 -0
- package/types/examples/jsm/shaders/VelocityShader.d.ts +16 -0
- package/types/examples/jsm/shaders/VerticalBlurShader.d.ts +10 -0
- package/types/examples/jsm/shaders/VerticalTiltShiftShader.d.ts +12 -0
- package/types/examples/jsm/shaders/VignetteShader.d.ts +11 -0
- package/types/examples/jsm/shaders/VolumeShader.d.ts +14 -0
- package/types/examples/jsm/shaders/WaterRefractionShader.d.ts +14 -0
- package/types/examples/jsm/textures/FlakesTexture.d.ts +3 -0
- package/types/examples/jsm/transpiler/AST.d.ts +7 -0
- package/types/examples/jsm/transpiler/GLSLDecoder.d.ts +7 -0
- package/types/examples/jsm/transpiler/ShaderToyDecoder.d.ts +3 -0
- package/types/examples/jsm/transpiler/TSLEncoder.d.ts +7 -0
- package/types/examples/jsm/transpiler/Transpiler.d.ts +5 -0
- package/types/examples/jsm/utils/BufferGeometryUtils.d.ts +37 -0
- package/types/examples/jsm/utils/CameraUtils.d.ts +9 -0
- package/types/examples/jsm/utils/GeometryCompressionUtils.d.ts +21 -0
- package/types/examples/jsm/utils/GeometryUtils.d.ts +25 -0
- package/types/examples/jsm/utils/LDrawUtils.d.ts +5 -0
- package/types/examples/jsm/utils/SceneUtils.d.ts +57 -0
- package/types/examples/jsm/utils/ShadowMapViewer.d.ts +26 -0
- package/types/examples/jsm/utils/ShadowMapViewerGPU.d.ts +26 -0
- package/types/examples/jsm/utils/SkeletonUtils.d.ts +32 -0
- package/types/examples/jsm/utils/SortUtils.d.ts +7 -0
- package/types/examples/jsm/utils/TextureUtils.d.ts +3 -0
- package/types/examples/jsm/utils/TextureUtilsGPU.d.ts +3 -0
- package/types/examples/jsm/utils/UVsDebug.d.ts +3 -0
- package/types/examples/jsm/utils/WorkerPool.d.ts +26 -0
- package/types/examples/jsm/webxr/ARButton.d.ts +9 -0
- package/types/examples/jsm/webxr/OculusHandModel.d.ts +23 -0
- package/types/examples/jsm/webxr/OculusHandPointerModel.d.ts +67 -0
- package/types/examples/jsm/webxr/Text2D.d.ts +3 -0
- package/types/examples/jsm/webxr/VRButton.d.ts +5 -0
- package/types/examples/jsm/webxr/XRButton.d.ts +5 -0
- package/types/examples/jsm/webxr/XRControllerModelFactory.d.ts +23 -0
- package/types/examples/jsm/webxr/XREstimatedLight.d.ts +69 -0
- package/types/examples/jsm/webxr/XRHandMeshModel.d.ts +19 -0
- package/types/examples/jsm/webxr/XRHandModelFactory.d.ts +32 -0
- package/types/examples/jsm/webxr/XRHandPrimitiveModel.d.ts +24 -0
- package/types/examples/jsm/webxr/XRPlanes.d.ts +5 -0
- package/types/globals.d.ts +9 -0
- package/types/index.d.ts +6 -0
- package/types/src/Three.Legacy.d.ts +20 -0
- package/types/src/Three.WebGPU.Nodes.d.ts +201 -0
- package/types/src/Three.WebGPU.d.ts +202 -0
- package/types/src/Three.d.ts +221 -0
- package/types/src/animation/AnimationAction.d.ts +86 -0
- package/types/src/animation/AnimationClip.d.ts +59 -0
- package/types/src/animation/AnimationMixer.d.ts +39 -0
- package/types/src/animation/AnimationObjectGroup.d.ts +17 -0
- package/types/src/animation/AnimationUtils.d.ts +60 -0
- package/types/src/animation/KeyframeTrack.d.ts +55 -0
- package/types/src/animation/PropertyBinding.d.ts +43 -0
- package/types/src/animation/PropertyMixer.d.ts +17 -0
- package/types/src/animation/tracks/BooleanKeyframeTrack.d.ts +10 -0
- package/types/src/animation/tracks/ColorKeyframeTrack.d.ts +11 -0
- package/types/src/animation/tracks/NumberKeyframeTrack.d.ts +11 -0
- package/types/src/animation/tracks/QuaternionKeyframeTrack.d.ts +11 -0
- package/types/src/animation/tracks/StringKeyframeTrack.d.ts +10 -0
- package/types/src/animation/tracks/VectorKeyframeTrack.d.ts +11 -0
- package/types/src/audio/Audio.d.ts +273 -0
- package/types/src/audio/AudioAnalyser.d.ts +58 -0
- package/types/src/audio/AudioContext.d.ts +19 -0
- package/types/src/audio/AudioListener.d.ts +96 -0
- package/types/src/audio/PositionalAudio.d.ts +101 -0
- package/types/src/cameras/ArrayCamera.d.ts +32 -0
- package/types/src/cameras/Camera.d.ts +74 -0
- package/types/src/cameras/CubeCamera.d.ts +68 -0
- package/types/src/cameras/OrthographicCamera.d.ts +174 -0
- package/types/src/cameras/PerspectiveCamera.d.ts +254 -0
- package/types/src/cameras/StereoCamera.d.ts +50 -0
- package/types/src/constants.d.ts +926 -0
- package/types/src/core/BufferAttribute.d.ts +622 -0
- package/types/src/core/BufferGeometry.d.ts +422 -0
- package/types/src/core/Clock.d.ts +72 -0
- package/types/src/core/EventDispatcher.d.ts +82 -0
- package/types/src/core/GLBufferAttribute.d.ts +121 -0
- package/types/src/core/InstancedBufferAttribute.d.ts +32 -0
- package/types/src/core/InstancedBufferGeometry.d.ts +37 -0
- package/types/src/core/InstancedInterleavedBuffer.d.ts +22 -0
- package/types/src/core/InterleavedBuffer.d.ts +150 -0
- package/types/src/core/InterleavedBufferAttribute.d.ts +201 -0
- package/types/src/core/Layers.d.ts +72 -0
- package/types/src/core/Object3D.d.ts +674 -0
- package/types/src/core/Raycaster.d.ts +208 -0
- package/types/src/core/RenderTarget.d.ts +96 -0
- package/types/src/core/Uniform.d.ts +38 -0
- package/types/src/core/UniformsGroup.d.ts +33 -0
- package/types/src/extras/Controls.d.ts +54 -0
- package/types/src/extras/DataUtils.d.ts +22 -0
- package/types/src/extras/Earcut.d.ts +15 -0
- package/types/src/extras/ImageUtils.d.ts +32 -0
- package/types/src/extras/PMREMGenerator.d.ts +82 -0
- package/types/src/extras/ShapeUtils.d.ts +25 -0
- package/types/src/extras/TextureUtils.d.ts +42 -0
- package/types/src/extras/core/Curve.d.ts +162 -0
- package/types/src/extras/core/CurvePath.d.ts +77 -0
- package/types/src/extras/core/Interpolations.d.ts +36 -0
- package/types/src/extras/core/Path.d.ts +166 -0
- package/types/src/extras/core/Shape.d.ts +86 -0
- package/types/src/extras/core/ShapePath.d.ts +98 -0
- package/types/src/extras/curves/ArcCurve.d.ts +41 -0
- package/types/src/extras/curves/CatmullRomCurve3.d.ts +77 -0
- package/types/src/extras/curves/CubicBezierCurve.d.ts +72 -0
- package/types/src/extras/curves/CubicBezierCurve3.d.ts +72 -0
- package/types/src/extras/curves/Curves.d.ts +10 -0
- package/types/src/extras/curves/EllipseCurve.d.ts +115 -0
- package/types/src/extras/curves/LineCurve.d.ts +42 -0
- package/types/src/extras/curves/LineCurve3.d.ts +42 -0
- package/types/src/extras/curves/QuadraticBezierCurve.d.ts +64 -0
- package/types/src/extras/curves/QuadraticBezierCurve3.d.ts +64 -0
- package/types/src/extras/curves/SplineCurve.d.ts +52 -0
- package/types/src/geometries/BoxGeometry.d.ts +59 -0
- package/types/src/geometries/CapsuleGeometry.d.ts +48 -0
- package/types/src/geometries/CircleGeometry.d.ts +51 -0
- package/types/src/geometries/ConeGeometry.d.ts +64 -0
- package/types/src/geometries/CylinderGeometry.d.ts +64 -0
- package/types/src/geometries/DodecahedronGeometry.d.ts +25 -0
- package/types/src/geometries/EdgesGeometry.d.ts +41 -0
- package/types/src/geometries/ExtrudeGeometry.d.ts +152 -0
- package/types/src/geometries/Geometries.d.ts +21 -0
- package/types/src/geometries/IcosahedronGeometry.d.ts +26 -0
- package/types/src/geometries/LatheGeometry.d.ts +55 -0
- package/types/src/geometries/OctahedronGeometry.d.ts +25 -0
- package/types/src/geometries/PlaneGeometry.d.ts +48 -0
- package/types/src/geometries/PolyhedronGeometry.d.ts +54 -0
- package/types/src/geometries/RingGeometry.d.ts +59 -0
- package/types/src/geometries/ShapeGeometry.d.ts +53 -0
- package/types/src/geometries/SphereGeometry.d.ts +67 -0
- package/types/src/geometries/TetrahedronGeometry.d.ts +25 -0
- package/types/src/geometries/TorusGeometry.d.ts +49 -0
- package/types/src/geometries/TorusKnotGeometry.d.ts +59 -0
- package/types/src/geometries/TubeGeometry.d.ts +86 -0
- package/types/src/geometries/WireframeGeometry.d.ts +40 -0
- package/types/src/helpers/ArrowHelper.d.ts +93 -0
- package/types/src/helpers/AxesHelper.d.ts +50 -0
- package/types/src/helpers/Box3Helper.d.ts +44 -0
- package/types/src/helpers/BoxHelper.d.ts +64 -0
- package/types/src/helpers/CameraHelper.d.ts +80 -0
- package/types/src/helpers/DirectionalLightHelper.d.ts +81 -0
- package/types/src/helpers/GridHelper.d.ts +47 -0
- package/types/src/helpers/HemisphereLightHelper.d.ts +72 -0
- package/types/src/helpers/PlaneHelper.d.ts +50 -0
- package/types/src/helpers/PointLightHelper.d.ts +73 -0
- package/types/src/helpers/PolarGridHelper.d.ts +55 -0
- package/types/src/helpers/SkeletonHelper.d.ts +78 -0
- package/types/src/helpers/SpotLightHelper.d.ts +77 -0
- package/types/src/lights/AmbientLight.d.ts +36 -0
- package/types/src/lights/DirectionalLight.d.ts +103 -0
- package/types/src/lights/DirectionalLightShadow.d.ts +73 -0
- package/types/src/lights/HemisphereLight.d.ts +61 -0
- package/types/src/lights/Light.d.ts +82 -0
- package/types/src/lights/LightProbe.d.ts +47 -0
- package/types/src/lights/LightShadow.d.ts +169 -0
- package/types/src/lights/PointLight.d.ts +102 -0
- package/types/src/lights/PointLightShadow.d.ts +22 -0
- package/types/src/lights/RectAreaLight.d.ts +82 -0
- package/types/src/lights/SpotLight.d.ts +164 -0
- package/types/src/lights/SpotLightShadow.d.ts +72 -0
- package/types/src/lights/webgpu/IESSpotLight.d.ts +6 -0
- package/types/src/loaders/AnimationLoader.d.ts +9 -0
- package/types/src/loaders/AudioLoader.d.ts +6 -0
- package/types/src/loaders/BufferGeometryLoader.d.ts +10 -0
- package/types/src/loaders/Cache.d.ts +21 -0
- package/types/src/loaders/CompressedTextureLoader.d.ts +14 -0
- package/types/src/loaders/CubeTextureLoader.d.ts +14 -0
- package/types/src/loaders/DataTextureLoader.d.ts +14 -0
- package/types/src/loaders/FileLoader.d.ts +19 -0
- package/types/src/loaders/ImageBitmapLoader.d.ts +22 -0
- package/types/src/loaders/ImageLoader.d.ts +17 -0
- package/types/src/loaders/Loader.d.ts +50 -0
- package/types/src/loaders/LoaderUtils.d.ts +10 -0
- package/types/src/loaders/LoadingManager.d.ts +69 -0
- package/types/src/loaders/MaterialLoader.d.ts +21 -0
- package/types/src/loaders/ObjectLoader.d.ts +35 -0
- package/types/src/loaders/TextureLoader.d.ts +18 -0
- package/types/src/loaders/nodes/NodeLoader.d.ts +21 -0
- package/types/src/loaders/nodes/NodeMaterialLoader.d.ts +11 -0
- package/types/src/loaders/nodes/NodeObjectLoader.d.ts +22 -0
- package/types/src/materials/LineBasicMaterial.d.ts +60 -0
- package/types/src/materials/LineDashedMaterial.d.ts +40 -0
- package/types/src/materials/Material.d.ts +631 -0
- package/types/src/materials/Materials.d.ts +18 -0
- package/types/src/materials/MeshBasicMaterial.d.ts +139 -0
- package/types/src/materials/MeshDepthMaterial.d.ts +76 -0
- package/types/src/materials/MeshDistanceMaterial.d.ts +62 -0
- package/types/src/materials/MeshLambertMaterial.d.ts +204 -0
- package/types/src/materials/MeshMatcapMaterial.d.ts +117 -0
- package/types/src/materials/MeshNormalMaterial.d.ts +93 -0
- package/types/src/materials/MeshPhongMaterial.d.ts +228 -0
- package/types/src/materials/MeshPhysicalMaterial.d.ts +236 -0
- package/types/src/materials/MeshStandardMaterial.d.ts +218 -0
- package/types/src/materials/MeshToonMaterial.d.ts +178 -0
- package/types/src/materials/PointsMaterial.d.ts +61 -0
- package/types/src/materials/RawShaderMaterial.d.ts +14 -0
- package/types/src/materials/ShaderMaterial.d.ts +167 -0
- package/types/src/materials/ShadowMaterial.d.ts +39 -0
- package/types/src/materials/SpriteMaterial.d.ts +66 -0
- package/types/src/materials/nodes/InstancedPointsNodeMaterial.d.ts +33 -0
- package/types/src/materials/nodes/Line2NodeMaterial.d.ts +53 -0
- package/types/src/materials/nodes/LineBasicNodeMaterial.d.ts +22 -0
- package/types/src/materials/nodes/LineDashedNodeMaterial.d.ts +29 -0
- package/types/src/materials/nodes/MeshBasicNodeMaterial.d.ts +36 -0
- package/types/src/materials/nodes/MeshLambertNodeMaterial.d.ts +49 -0
- package/types/src/materials/nodes/MeshMatcapNodeMaterial.d.ts +32 -0
- package/types/src/materials/nodes/MeshNormalNodeMaterial.d.ts +28 -0
- package/types/src/materials/nodes/MeshPhongNodeMaterial.d.ts +56 -0
- package/types/src/materials/nodes/MeshPhysicalNodeMaterial.d.ts +93 -0
- package/types/src/materials/nodes/MeshSSSNodeMaterial.d.ts +16 -0
- package/types/src/materials/nodes/MeshStandardNodeMaterial.d.ts +56 -0
- package/types/src/materials/nodes/MeshToonNodeMaterial.d.ts +42 -0
- package/types/src/materials/nodes/NodeMaterial.d.ts +89 -0
- package/types/src/materials/nodes/NodeMaterials.d.ts +18 -0
- package/types/src/materials/nodes/PointsNodeMaterial.d.ts +21 -0
- package/types/src/materials/nodes/ShadowNodeMaterial.d.ts +17 -0
- package/types/src/materials/nodes/SpriteNodeMaterial.d.ts +26 -0
- package/types/src/materials/nodes/VolumeNodeMaterial.d.ts +10 -0
- package/types/src/materials/nodes/manager/NodeMaterialObserver.d.ts +81 -0
- package/types/src/math/Box2.d.ts +48 -0
- package/types/src/math/Box3.d.ts +66 -0
- package/types/src/math/Color.d.ts +358 -0
- package/types/src/math/ColorManagement.d.ts +49 -0
- package/types/src/math/Cylindrical.d.ts +26 -0
- package/types/src/math/Euler.d.ts +50 -0
- package/types/src/math/Frustum.d.ts +30 -0
- package/types/src/math/Interpolant.d.ts +10 -0
- package/types/src/math/Line3.d.ts +29 -0
- package/types/src/math/MathUtils.d.ts +137 -0
- package/types/src/math/Matrix2.d.ts +53 -0
- package/types/src/math/Matrix3.d.ts +184 -0
- package/types/src/math/Matrix4.d.ts +284 -0
- package/types/src/math/Plane.d.ts +47 -0
- package/types/src/math/Quaternion.d.ts +189 -0
- package/types/src/math/Ray.d.ts +60 -0
- package/types/src/math/Sphere.d.ts +47 -0
- package/types/src/math/Spherical.d.ts +27 -0
- package/types/src/math/SphericalHarmonics3.d.ts +50 -0
- package/types/src/math/Triangle.d.ts +110 -0
- package/types/src/math/Vector2.d.ts +321 -0
- package/types/src/math/Vector3.d.ts +301 -0
- package/types/src/math/Vector4.d.ts +239 -0
- package/types/src/math/interpolants/CubicInterpolant.d.ts +7 -0
- package/types/src/math/interpolants/DiscreteInterpolant.d.ts +7 -0
- package/types/src/math/interpolants/LinearInterpolant.d.ts +7 -0
- package/types/src/math/interpolants/QuaternionLinearInterpolant.d.ts +7 -0
- package/types/src/nodes/Nodes.d.ts +176 -0
- package/types/src/nodes/TSL.d.ts +175 -0
- package/types/src/nodes/accessors/AccessorsUtils.d.ts +9 -0
- package/types/src/nodes/accessors/BatchNode.d.ts +13 -0
- package/types/src/nodes/accessors/Bitangent.d.ts +9 -0
- package/types/src/nodes/accessors/BufferAttributeNode.d.ts +54 -0
- package/types/src/nodes/accessors/BufferNode.d.ts +17 -0
- package/types/src/nodes/accessors/Camera.d.ts +15 -0
- package/types/src/nodes/accessors/ClippingNode.d.ts +16 -0
- package/types/src/nodes/accessors/CubeTextureNode.d.ts +28 -0
- package/types/src/nodes/accessors/InstanceNode.d.ts +13 -0
- package/types/src/nodes/accessors/MaterialNode.d.ts +129 -0
- package/types/src/nodes/accessors/MaterialProperties.d.ts +4 -0
- package/types/src/nodes/accessors/MaterialReferenceNode.d.ts +15 -0
- package/types/src/nodes/accessors/ModelNode.d.ts +24 -0
- package/types/src/nodes/accessors/ModelViewProjectionNode.d.ts +8 -0
- package/types/src/nodes/accessors/MorphNode.d.ts +15 -0
- package/types/src/nodes/accessors/Normal.d.ts +25 -0
- package/types/src/nodes/accessors/Object3DNode.d.ts +22 -0
- package/types/src/nodes/accessors/PointUVNode.d.ts +10 -0
- package/types/src/nodes/accessors/Position.d.ts +10 -0
- package/types/src/nodes/accessors/ReferenceBaseNode.d.ts +27 -0
- package/types/src/nodes/accessors/ReferenceNode.d.ts +29 -0
- package/types/src/nodes/accessors/ReflectVector.d.ts +9 -0
- package/types/src/nodes/accessors/RendererReferenceNode.d.ts +15 -0
- package/types/src/nodes/accessors/SceneNode.d.ts +20 -0
- package/types/src/nodes/accessors/SkinningNode.d.ts +30 -0
- package/types/src/nodes/accessors/StorageBufferNode.d.ts +38 -0
- package/types/src/nodes/accessors/StorageTextureNode.d.ts +40 -0
- package/types/src/nodes/accessors/Tangent.d.ts +12 -0
- package/types/src/nodes/accessors/Texture3DNode.d.ts +17 -0
- package/types/src/nodes/accessors/TextureBicubic.d.ts +4 -0
- package/types/src/nodes/accessors/TextureNode.d.ts +66 -0
- package/types/src/nodes/accessors/TextureSizeNode.d.ts +18 -0
- package/types/src/nodes/accessors/UV.d.ts +4 -0
- package/types/src/nodes/accessors/UniformArrayNode.d.ts +30 -0
- package/types/src/nodes/accessors/UserDataNode.d.ts +15 -0
- package/types/src/nodes/accessors/VelocityNode.d.ts +16 -0
- package/types/src/nodes/accessors/VertexColorNode.d.ts +12 -0
- package/types/src/nodes/code/CodeNode.d.ts +23 -0
- package/types/src/nodes/code/ExpressionNode.d.ts +9 -0
- package/types/src/nodes/code/FunctionCallNode.d.ts +25 -0
- package/types/src/nodes/code/FunctionNode.d.ts +38 -0
- package/types/src/nodes/code/ScriptableNode.d.ts +22 -0
- package/types/src/nodes/code/ScriptableValueNode.d.ts +10 -0
- package/types/src/nodes/core/AssignNode.d.ts +18 -0
- package/types/src/nodes/core/AttributeNode.d.ts +16 -0
- package/types/src/nodes/core/BypassNode.d.ts +18 -0
- package/types/src/nodes/core/CacheNode.d.ts +20 -0
- package/types/src/nodes/core/ConstNode.d.ts +9 -0
- package/types/src/nodes/core/ContextNode.d.ts +24 -0
- package/types/src/nodes/core/IndexNode.d.ts +28 -0
- package/types/src/nodes/core/InputNode.d.ts +15 -0
- package/types/src/nodes/core/LightingModel.d.ts +46 -0
- package/types/src/nodes/core/MRTNode.d.ts +24 -0
- package/types/src/nodes/core/Node.d.ts +111 -0
- package/types/src/nodes/core/NodeAttribute.d.ts +9 -0
- package/types/src/nodes/core/NodeBuilder.d.ts +143 -0
- package/types/src/nodes/core/NodeCache.d.ts +52 -0
- package/types/src/nodes/core/NodeCode.d.ts +4 -0
- package/types/src/nodes/core/NodeFrame.d.ts +34 -0
- package/types/src/nodes/core/NodeFunction.d.ts +13 -0
- package/types/src/nodes/core/NodeFunctionInput.d.ts +7 -0
- package/types/src/nodes/core/NodeParser.d.ts +5 -0
- package/types/src/nodes/core/NodeUniform.d.ts +14 -0
- package/types/src/nodes/core/NodeUtils.d.ts +25 -0
- package/types/src/nodes/core/NodeVar.d.ts +7 -0
- package/types/src/nodes/core/NodeVarying.d.ts +7 -0
- package/types/src/nodes/core/OutputStructNode.d.ts +12 -0
- package/types/src/nodes/core/ParameterNode.d.ts +12 -0
- package/types/src/nodes/core/PropertyNode.d.ts +43 -0
- package/types/src/nodes/core/StackNode.d.ts +27 -0
- package/types/src/nodes/core/StructTypeNode.d.ts +9 -0
- package/types/src/nodes/core/TempNode.d.ts +10 -0
- package/types/src/nodes/core/UniformGroup.d.ts +7 -0
- package/types/src/nodes/core/UniformGroupNode.d.ts +21 -0
- package/types/src/nodes/core/UniformNode.d.ts +24 -0
- package/types/src/nodes/core/VarNode.d.ts +20 -0
- package/types/src/nodes/core/VaryingNode.d.ts +21 -0
- package/types/src/nodes/core/constants.d.ts +27 -0
- package/types/src/nodes/display/AfterImageNode.d.ts +19 -0
- package/types/src/nodes/display/AnaglyphPassNode.d.ts +14 -0
- package/types/src/nodes/display/AnamorphicNode.d.ts +25 -0
- package/types/src/nodes/display/BleachBypass.d.ts +4 -0
- package/types/src/nodes/display/BlendMode.d.ts +10 -0
- package/types/src/nodes/display/BloomNode.d.ts +29 -0
- package/types/src/nodes/display/BumpMapNode.d.ts +16 -0
- package/types/src/nodes/display/ColorAdjustment.d.ts +27 -0
- package/types/src/nodes/display/ColorSpaceFunctions.d.ts +6 -0
- package/types/src/nodes/display/ColorSpaceNode.d.ts +54 -0
- package/types/src/nodes/display/DenoiseNode.d.ts +32 -0
- package/types/src/nodes/display/DepthOfFieldNode.d.ts +26 -0
- package/types/src/nodes/display/DotScreenNode.d.ts +23 -0
- package/types/src/nodes/display/FXAANode.d.ts +13 -0
- package/types/src/nodes/display/FilmNode.d.ts +19 -0
- package/types/src/nodes/display/FrontFacingNode.d.ts +12 -0
- package/types/src/nodes/display/GTAONode.d.ts +40 -0
- package/types/src/nodes/display/GaussianBlurNode.d.ts +27 -0
- package/types/src/nodes/display/Lut3DNode.d.ts +24 -0
- package/types/src/nodes/display/MotionBlur.d.ts +8 -0
- package/types/src/nodes/display/NormalMapNode.d.ts +17 -0
- package/types/src/nodes/display/ParallaxBarrierPassNode.d.ts +14 -0
- package/types/src/nodes/display/PassNode.d.ts +71 -0
- package/types/src/nodes/display/PixelationPassNode.d.ts +31 -0
- package/types/src/nodes/display/PosterizeNode.d.ts +14 -0
- package/types/src/nodes/display/RGBShiftNode.d.ts +18 -0
- package/types/src/nodes/display/RenderOutputNode.d.ts +28 -0
- package/types/src/nodes/display/SSAAPassNode.d.ts +26 -0
- package/types/src/nodes/display/ScreenNode.d.ts +48 -0
- package/types/src/nodes/display/Sepia.d.ts +4 -0
- package/types/src/nodes/display/SobelOperatorNode.d.ts +13 -0
- package/types/src/nodes/display/StereoCompositePassNode.d.ts +17 -0
- package/types/src/nodes/display/StereoPassNode.d.ts +17 -0
- package/types/src/nodes/display/ToneMappingFunctions.d.ts +14 -0
- package/types/src/nodes/display/ToneMappingNode.d.ts +32 -0
- package/types/src/nodes/display/ToonOutlinePassNode.d.ts +24 -0
- package/types/src/nodes/display/TransitionNode.d.ts +35 -0
- package/types/src/nodes/display/ViewportDepthNode.d.ts +34 -0
- package/types/src/nodes/display/ViewportDepthTextureNode.d.ts +14 -0
- package/types/src/nodes/display/ViewportSharedTextureNode.d.ts +14 -0
- package/types/src/nodes/display/ViewportTextureNode.d.ts +28 -0
- package/types/src/nodes/fog/FogExp2Node.d.ts +14 -0
- package/types/src/nodes/fog/FogNode.d.ts +20 -0
- package/types/src/nodes/fog/FogRangeNode.d.ts +19 -0
- package/types/src/nodes/functions/BSDF/BRDF_GGX.d.ts +15 -0
- package/types/src/nodes/functions/BSDF/BRDF_Lambert.d.ts +7 -0
- package/types/src/nodes/functions/BSDF/BRDF_Sheen.d.ts +7 -0
- package/types/src/nodes/functions/BSDF/DFGApprox.d.ts +11 -0
- package/types/src/nodes/functions/BSDF/D_GGX.d.ts +10 -0
- package/types/src/nodes/functions/BSDF/D_GGX_Anisotropic.d.ts +10 -0
- package/types/src/nodes/functions/BSDF/F_Schlick.d.ts +7 -0
- package/types/src/nodes/functions/BSDF/LTC.d.ts +9 -0
- package/types/src/nodes/functions/BSDF/Schlick_to_F0.d.ts +10 -0
- package/types/src/nodes/functions/BSDF/V_GGX_SmithCorrelated.d.ts +11 -0
- package/types/src/nodes/functions/BSDF/V_GGX_SmithCorrelated_Anisotropic.d.ts +16 -0
- package/types/src/nodes/functions/BasicLightingModel.d.ts +7 -0
- package/types/src/nodes/functions/PhongLightingModel.d.ts +7 -0
- package/types/src/nodes/functions/PhysicalLightingModel.d.ts +30 -0
- package/types/src/nodes/functions/ShadowMaskModel.d.ts +9 -0
- package/types/src/nodes/functions/ToonLightingModel.d.ts +4 -0
- package/types/src/nodes/functions/material/getGeometryRoughness.d.ts +6 -0
- package/types/src/nodes/functions/material/getRoughness.d.ts +7 -0
- package/types/src/nodes/functions/material/getShIrradianceAt.d.ts +6 -0
- package/types/src/nodes/geometry/RangeNode.d.ts +19 -0
- package/types/src/nodes/gpgpu/ComputeNode.d.ts +24 -0
- package/types/src/nodes/lighting/AONode.d.ts +8 -0
- package/types/src/nodes/lighting/AmbientLightNode.d.ts +8 -0
- package/types/src/nodes/lighting/AnalyticLightNode.d.ts +8 -0
- package/types/src/nodes/lighting/BasicEnvironmentNode.d.ts +10 -0
- package/types/src/nodes/lighting/BasicLightMapNode.d.ts +8 -0
- package/types/src/nodes/lighting/DirectionalLightNode.d.ts +8 -0
- package/types/src/nodes/lighting/EnvironmentNode.d.ts +8 -0
- package/types/src/nodes/lighting/HemisphereLightNode.d.ts +13 -0
- package/types/src/nodes/lighting/IESSpotLightNode.d.ts +5 -0
- package/types/src/nodes/lighting/IrradianceNode.d.ts +8 -0
- package/types/src/nodes/lighting/LightNode.d.ts +18 -0
- package/types/src/nodes/lighting/LightProbeNode.d.ts +11 -0
- package/types/src/nodes/lighting/LightUtils.d.ts +9 -0
- package/types/src/nodes/lighting/LightingContextNode.d.ts +21 -0
- package/types/src/nodes/lighting/LightingNode.d.ts +7 -0
- package/types/src/nodes/lighting/LightsNode.d.ts +18 -0
- package/types/src/nodes/lighting/PointLightNode.d.ts +10 -0
- package/types/src/nodes/lighting/RectAreaLightNode.d.ts +21 -0
- package/types/src/nodes/lighting/SpotLightNode.d.ts +15 -0
- package/types/src/nodes/materialx/MaterialXNodes.d.ts +107 -0
- package/types/src/nodes/materialx/lib/mx_hsv.d.ts +6 -0
- package/types/src/nodes/materialx/lib/mx_noise.d.ts +359 -0
- package/types/src/nodes/materialx/lib/mx_transform_color.d.ts +4 -0
- package/types/src/nodes/math/ConditionalNode.d.ts +39 -0
- package/types/src/nodes/math/Hash.d.ts +4 -0
- package/types/src/nodes/math/MathNode.d.ts +273 -0
- package/types/src/nodes/math/MathUtils.d.ts +6 -0
- package/types/src/nodes/math/OperatorNode.d.ts +97 -0
- package/types/src/nodes/math/TriNoise3D.d.ts +12 -0
- package/types/src/nodes/parsers/GLSLNodeFunction.d.ts +9 -0
- package/types/src/nodes/parsers/GLSLNodeParser.d.ts +8 -0
- package/types/src/nodes/pmrem/PMREMNode.d.ts +22 -0
- package/types/src/nodes/pmrem/PMREMUtils.d.ts +28 -0
- package/types/src/nodes/procedural/Checker.d.ts +4 -0
- package/types/src/nodes/tsl/TSLBase.d.ts +21 -0
- package/types/src/nodes/tsl/TSLCore.d.ts +273 -0
- package/types/src/nodes/utils/ArrayElementNode.d.ts +9 -0
- package/types/src/nodes/utils/ConvertNode.d.ts +7 -0
- package/types/src/nodes/utils/CubeMapNode.d.ts +13 -0
- package/types/src/nodes/utils/Discard.d.ts +11 -0
- package/types/src/nodes/utils/EquirectUVNode.d.ts +8 -0
- package/types/src/nodes/utils/FunctionOverloadingNode.d.ts +13 -0
- package/types/src/nodes/utils/JoinNode.d.ts +10 -0
- package/types/src/nodes/utils/LoopNode.d.ts +22 -0
- package/types/src/nodes/utils/MatcapUVNode.d.ts +8 -0
- package/types/src/nodes/utils/MaxMipLevelNode.d.ts +14 -0
- package/types/src/nodes/utils/OscNode.d.ts +25 -0
- package/types/src/nodes/utils/Packing.d.ts +5 -0
- package/types/src/nodes/utils/RTTNode.d.ts +45 -0
- package/types/src/nodes/utils/ReflectorNode.d.ts +32 -0
- package/types/src/nodes/utils/RemapNode.d.ts +36 -0
- package/types/src/nodes/utils/RotateNode.d.ts +15 -0
- package/types/src/nodes/utils/SetNode.d.ts +11 -0
- package/types/src/nodes/utils/SplitNode.d.ts +15 -0
- package/types/src/nodes/utils/SpriteSheetUVNode.d.ts +16 -0
- package/types/src/nodes/utils/SpriteUtils.d.ts +6 -0
- package/types/src/nodes/utils/StorageArrayElementNode.d.ts +19 -0
- package/types/src/nodes/utils/TimerNode.d.ts +25 -0
- package/types/src/nodes/utils/TriplanarTexturesNode.d.ts +36 -0
- package/types/src/nodes/utils/UVUtils.d.ts +14 -0
- package/types/src/nodes/utils/ViewportUtils.d.ts +4 -0
- package/types/src/objects/BatchedMesh.d.ts +230 -0
- package/types/src/objects/Bone.d.ts +36 -0
- package/types/src/objects/Group.d.ts +37 -0
- package/types/src/objects/InstancedMesh.d.ts +179 -0
- package/types/src/objects/LOD.d.ts +111 -0
- package/types/src/objects/Line.d.ts +87 -0
- package/types/src/objects/LineLoop.d.ts +40 -0
- package/types/src/objects/LineSegments.d.ts +41 -0
- package/types/src/objects/Mesh.d.ts +94 -0
- package/types/src/objects/Points.d.ts +66 -0
- package/types/src/objects/Skeleton.d.ts +120 -0
- package/types/src/objects/SkinnedMesh.d.ts +160 -0
- package/types/src/objects/Sprite.d.ts +65 -0
- package/types/src/renderers/WebGL3DRenderTarget.d.ts +29 -0
- package/types/src/renderers/WebGLArrayRenderTarget.d.ts +29 -0
- package/types/src/renderers/WebGLCubeRenderTarget.d.ts +18 -0
- package/types/src/renderers/WebGLRenderTarget.d.ts +8 -0
- package/types/src/renderers/WebGLRenderer.d.ts +552 -0
- package/types/src/renderers/common/Animation.d.ts +13 -0
- package/types/src/renderers/common/Attributes.d.ts +22 -0
- package/types/src/renderers/common/Backend.d.ts +19 -0
- package/types/src/renderers/common/Background.d.ts +23 -0
- package/types/src/renderers/common/BindGroup.d.ts +16 -0
- package/types/src/renderers/common/Binding.d.ts +8 -0
- package/types/src/renderers/common/Bindings.d.ts +42 -0
- package/types/src/renderers/common/Buffer.d.ts +11 -0
- package/types/src/renderers/common/BufferUtils.d.ts +4 -0
- package/types/src/renderers/common/BundleGroup.d.ts +10 -0
- package/types/src/renderers/common/ChainMap.d.ts +9 -0
- package/types/src/renderers/common/ClippingContext.d.ts +24 -0
- package/types/src/renderers/common/Color4.d.ts +10 -0
- package/types/src/renderers/common/ComputePipeline.d.ts +8 -0
- package/types/src/renderers/common/Constants.d.ts +9 -0
- package/types/src/renderers/common/CubeRenderTarget.d.ts +10 -0
- package/types/src/renderers/common/DataMap.d.ts +20 -0
- package/types/src/renderers/common/Geometries.d.ts +31 -0
- package/types/src/renderers/common/Info.d.ts +34 -0
- package/types/src/renderers/common/Pipeline.d.ts +6 -0
- package/types/src/renderers/common/Pipelines.d.ts +68 -0
- package/types/src/renderers/common/PostProcessing.d.ts +21 -0
- package/types/src/renderers/common/ProgrammableStage.d.ts +15 -0
- package/types/src/renderers/common/QuadMesh.d.ts +16 -0
- package/types/src/renderers/common/RenderBundle.d.ts +9 -0
- package/types/src/renderers/common/RenderBundles.d.ts +11 -0
- package/types/src/renderers/common/RenderContext.d.ts +43 -0
- package/types/src/renderers/common/RenderContexts.d.ts +17 -0
- package/types/src/renderers/common/RenderList.d.ts +67 -0
- package/types/src/renderers/common/RenderLists.d.ts +11 -0
- package/types/src/renderers/common/RenderObject.d.ts +94 -0
- package/types/src/renderers/common/RenderObjects.d.ts +62 -0
- package/types/src/renderers/common/RenderPipeline.d.ts +8 -0
- package/types/src/renderers/common/Renderer.d.ts +296 -0
- package/types/src/renderers/common/SampledTexture.d.ts +33 -0
- package/types/src/renderers/common/Sampler.d.ts +11 -0
- package/types/src/renderers/common/StorageBufferAttribute.d.ts +7 -0
- package/types/src/renderers/common/StorageInstancedBufferAttribute.d.ts +8 -0
- package/types/src/renderers/common/StorageTexture.d.ts +5 -0
- package/types/src/renderers/common/Textures.d.ts +68 -0
- package/types/src/renderers/common/Uniform.d.ts +45 -0
- package/types/src/renderers/common/UniformBuffer.d.ts +6 -0
- package/types/src/renderers/common/UniformsGroup.d.ts +32 -0
- package/types/src/renderers/common/extras/PMREMGenerator.d.ts +9 -0
- package/types/src/renderers/common/nodes/NodeBuilderState.d.ts +31 -0
- package/types/src/renderers/common/nodes/NodeLibrary.d.ts +56 -0
- package/types/src/renderers/common/nodes/NodeSampledTexture.d.ts +29 -0
- package/types/src/renderers/common/nodes/NodeSampler.d.ts +12 -0
- package/types/src/renderers/common/nodes/NodeUniform.d.ts +68 -0
- package/types/src/renderers/common/nodes/NodeUniformsGroup.d.ts +10 -0
- package/types/src/renderers/common/nodes/Nodes.d.ts +114 -0
- package/types/src/renderers/common/nodes/StandardNodeLibrary.d.ts +5 -0
- package/types/src/renderers/shaders/ShaderChunk.d.ts +143 -0
- package/types/src/renderers/shaders/ShaderLib.d.ts +29 -0
- package/types/src/renderers/shaders/UniformsLib.d.ts +189 -0
- package/types/src/renderers/shaders/UniformsUtils.d.ts +14 -0
- package/types/src/renderers/webgl/WebGLAttributes.d.ts +21 -0
- package/types/src/renderers/webgl/WebGLBindingStates.d.ts +26 -0
- package/types/src/renderers/webgl/WebGLBufferRenderer.d.ts +21 -0
- package/types/src/renderers/webgl/WebGLCapabilities.d.ts +48 -0
- package/types/src/renderers/webgl/WebGLClipping.d.ts +26 -0
- package/types/src/renderers/webgl/WebGLCubeMaps.d.ts +8 -0
- package/types/src/renderers/webgl/WebGLCubeUVMaps.d.ts +9 -0
- package/types/src/renderers/webgl/WebGLExtensions.d.ts +7 -0
- package/types/src/renderers/webgl/WebGLGeometries.d.ts +13 -0
- package/types/src/renderers/webgl/WebGLIndexedBufferRenderer.d.ts +15 -0
- package/types/src/renderers/webgl/WebGLInfo.d.ts +39 -0
- package/types/src/renderers/webgl/WebGLLights.d.ts +49 -0
- package/types/src/renderers/webgl/WebGLObjects.d.ts +6 -0
- package/types/src/renderers/webgl/WebGLProgram.d.ts +30 -0
- package/types/src/renderers/webgl/WebGLPrograms.d.ts +240 -0
- package/types/src/renderers/webgl/WebGLProperties.d.ts +9 -0
- package/types/src/renderers/webgl/WebGLRenderLists.d.ts +66 -0
- package/types/src/renderers/webgl/WebGLShader.d.ts +1 -0
- package/types/src/renderers/webgl/WebGLShadowMap.d.ts +38 -0
- package/types/src/renderers/webgl/WebGLState.d.ts +116 -0
- package/types/src/renderers/webgl/WebGLTextures.d.ts +30 -0
- package/types/src/renderers/webgl/WebGLUniforms.d.ts +12 -0
- package/types/src/renderers/webgl/WebGLUniformsGroups.d.ts +17 -0
- package/types/src/renderers/webgl/WebGLUtils.d.ts +11 -0
- package/types/src/renderers/webgl-fallback/WebGLBackend.d.ts +14 -0
- package/types/src/renderers/webgpu/WebGPUBackend.d.ts +25 -0
- package/types/src/renderers/webgpu/WebGPURenderer.Nodes.d.ts +12 -0
- package/types/src/renderers/webgpu/WebGPURenderer.d.ts +14 -0
- package/types/src/renderers/webgpu/nodes/BasicNodeLibrary.d.ts +5 -0
- package/types/src/renderers/webgpu/nodes/StandardNodeLibrary.d.ts +5 -0
- package/types/src/renderers/webgpu/nodes/WGSLNodeBuilder.d.ts +125 -0
- package/types/src/renderers/webgpu/nodes/WGSLNodeFunction.d.ts +6 -0
- package/types/src/renderers/webgpu/nodes/WGSLNodeParser.d.ts +6 -0
- package/types/src/renderers/webgpu/utils/WebGPUConstants.d.ts +328 -0
- package/types/src/renderers/webxr/WebXRController.d.ts +63 -0
- package/types/src/renderers/webxr/WebXRDepthSensing.d.ts +22 -0
- package/types/src/renderers/webxr/WebXRManager.d.ts +85 -0
- package/types/src/scenes/Fog.d.ts +77 -0
- package/types/src/scenes/FogExp2.d.ts +66 -0
- package/types/src/scenes/Scene.d.ts +118 -0
- package/types/src/textures/CanvasTexture.d.ts +51 -0
- package/types/src/textures/CompressedArrayTexture.d.ts +68 -0
- package/types/src/textures/CompressedCubeTexture.d.ts +13 -0
- package/types/src/textures/CompressedTexture.d.ts +95 -0
- package/types/src/textures/CubeTexture.d.ts +90 -0
- package/types/src/textures/Data3DTexture.d.ts +96 -0
- package/types/src/textures/DataArrayTexture.d.ts +123 -0
- package/types/src/textures/DataTexture.d.ts +113 -0
- package/types/src/textures/DepthTexture.d.ts +104 -0
- package/types/src/textures/FramebufferTexture.d.ts +62 -0
- package/types/src/textures/Source.d.ts +75 -0
- package/types/src/textures/Texture.d.ts +477 -0
- package/types/src/textures/VideoTexture.d.ts +90 -0
- package/types/src/textures/types.d.ts +9 -0
- package/types/src/utils.d.ts +3 -0
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
import CodeNode from "../../../nodes/code/CodeNode.js";
|
|
2
|
+
import { NodeShaderStage } from "../../../nodes/core/constants.js";
|
|
3
|
+
import NodeBuilder from "../../../nodes/core/NodeBuilder.js";
|
|
4
|
+
import NodeUniform from "../../../nodes/core/NodeUniform.js";
|
|
5
|
+
import NodeVar from "../../../nodes/core/NodeVar.js";
|
|
6
|
+
import StructTypeNode from "../../../nodes/core/StructTypeNode.js";
|
|
7
|
+
import { ShaderNode } from "../../../nodes/tsl/TSLCore.js";
|
|
8
|
+
import { Texture } from "../../../textures/Texture.js";
|
|
9
|
+
import NodeUniformsGroup from "../../common/nodes/NodeUniformsGroup.js";
|
|
10
|
+
|
|
11
|
+
type BuiltinStage = NodeShaderStage | "attribute" | "output";
|
|
12
|
+
interface BuiltinType {
|
|
13
|
+
name: string;
|
|
14
|
+
property: string;
|
|
15
|
+
type: string;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default class WGSLNodeBuilder extends NodeBuilder {
|
|
19
|
+
builtins: { [key in BuiltinStage]: Map<string, BuiltinType> };
|
|
20
|
+
uniformGroups: { [key in NodeShaderStage]: NodeUniformsGroup };
|
|
21
|
+
|
|
22
|
+
needsToWorkingColorSpace(texture: Texture): boolean;
|
|
23
|
+
_generateTextureSample(
|
|
24
|
+
texture: Texture,
|
|
25
|
+
textureProperty: string,
|
|
26
|
+
uvSnippet: string,
|
|
27
|
+
depthSnippet: string | null,
|
|
28
|
+
shaderStage: NodeShaderStage,
|
|
29
|
+
): string;
|
|
30
|
+
_generateVideoSample(textureProperty: string, uvSnippet: string, shaderStage: NodeShaderStage): string;
|
|
31
|
+
_generateTextureSampleLevel(
|
|
32
|
+
texture: Texture,
|
|
33
|
+
textureProperty: string,
|
|
34
|
+
uvSnippet: string,
|
|
35
|
+
levelSnippet: string,
|
|
36
|
+
depthSnippet: string | null,
|
|
37
|
+
shaderStage: NodeShaderStage,
|
|
38
|
+
): string;
|
|
39
|
+
generateTextureLod(texture: Texture, textureProperty: string, uvSnippet: string, levelSnippet: string): string;
|
|
40
|
+
generateTextureLoad(
|
|
41
|
+
texture: Texture,
|
|
42
|
+
textureProperty: string,
|
|
43
|
+
uvIndexSnippet: string,
|
|
44
|
+
depthSnippet: string | null,
|
|
45
|
+
shaderStage: NodeShaderStage,
|
|
46
|
+
): string;
|
|
47
|
+
generateTextureStore(
|
|
48
|
+
texture: Texture,
|
|
49
|
+
textureProperty: string,
|
|
50
|
+
uvIndexSnippet: string,
|
|
51
|
+
valueSnippet: string,
|
|
52
|
+
): string;
|
|
53
|
+
isUnfilterable(texture: Texture): boolean;
|
|
54
|
+
generateTexture(
|
|
55
|
+
texture: Texture,
|
|
56
|
+
textureProperty: string,
|
|
57
|
+
uvSnippet: string,
|
|
58
|
+
depthSnippet: string | null,
|
|
59
|
+
shaderStage: NodeShaderStage,
|
|
60
|
+
): string;
|
|
61
|
+
generateTextureGrad(
|
|
62
|
+
texture: Texture,
|
|
63
|
+
textureProperty: string,
|
|
64
|
+
uvSnippet: string,
|
|
65
|
+
gradSnippet: string[],
|
|
66
|
+
depthSnippet: string | null,
|
|
67
|
+
shaderStage: NodeShaderStage,
|
|
68
|
+
): string;
|
|
69
|
+
generateTextureCompare(
|
|
70
|
+
texture: Texture,
|
|
71
|
+
textureProperty: string,
|
|
72
|
+
uvSnippet: string,
|
|
73
|
+
compareSnippet: String,
|
|
74
|
+
shaderStage: NodeShaderStage,
|
|
75
|
+
): string;
|
|
76
|
+
generateTextureLevel(
|
|
77
|
+
texture: Texture,
|
|
78
|
+
textureProperty: string,
|
|
79
|
+
uvSnippet: string,
|
|
80
|
+
levelSnippet: string,
|
|
81
|
+
depthSnippet: string | null,
|
|
82
|
+
shaderStage: NodeShaderStage,
|
|
83
|
+
): string;
|
|
84
|
+
|
|
85
|
+
getPropertyName<TValue>(node: NodeVar | NodeUniform<TValue>, shaderStage: NodeShaderStage): string;
|
|
86
|
+
|
|
87
|
+
getOutputStructName(): string;
|
|
88
|
+
|
|
89
|
+
_getUniformGroupCount(shaderStage: NodeShaderStage): number;
|
|
90
|
+
|
|
91
|
+
getFunctionOperator(op: string): string | null;
|
|
92
|
+
// getStorageAccess(node: StorageTextureNode | StorageBufferNode): string;
|
|
93
|
+
|
|
94
|
+
getBuiltin(name: string, property: string, type: string, shaderStage: BuiltinStage): string;
|
|
95
|
+
getVertexIndex(): string;
|
|
96
|
+
getInstanceIndex(): string;
|
|
97
|
+
getDrawIndex(): null;
|
|
98
|
+
|
|
99
|
+
buildFunctionCode(shaderNode: ShaderNode): string;
|
|
100
|
+
|
|
101
|
+
getFragDepth(): string;
|
|
102
|
+
getFragCoord(): string;
|
|
103
|
+
getFrontFacing(): string;
|
|
104
|
+
|
|
105
|
+
getBuiltins(shaderStage: BuiltinStage): string;
|
|
106
|
+
getAttributes(shaderStage: NodeShaderStage): string;
|
|
107
|
+
|
|
108
|
+
getStructMembers(struct: StructTypeNode): string;
|
|
109
|
+
getStructs(shaderStage: NodeShaderStage): string;
|
|
110
|
+
|
|
111
|
+
getVar(type: string, name: string): string;
|
|
112
|
+
getVars(shaderStage: NodeShaderStage): string;
|
|
113
|
+
getVaryings(shaderStage: NodeShaderStage): string;
|
|
114
|
+
getUniforms(shaderStage: NodeShaderStage): string;
|
|
115
|
+
buildCode(): void;
|
|
116
|
+
getMethod(method: string, output?: string | null): string;
|
|
117
|
+
|
|
118
|
+
_getWGSLMethod(method: string): CodeNode | string;
|
|
119
|
+
_include(name: string): CodeNode;
|
|
120
|
+
_getWGSLVertexCode(shaderData: { [key: string]: string }): string;
|
|
121
|
+
_getWGSLFragmentCode(shaderData: { [key: string]: string }): string;
|
|
122
|
+
_getWGSLComputeCode(shaderData: { [key: string]: string }, workgroupSize: string): string;
|
|
123
|
+
_getWGSLStruct(name: string, vars: string): string;
|
|
124
|
+
_getWGSLStructBinding(name: string, vars: string, access: string, binding: number, group: number): string;
|
|
125
|
+
}
|
|
@@ -0,0 +1,328 @@
|
|
|
1
|
+
export enum GPUPrimitiveTopology {
|
|
2
|
+
PointList = "point-list",
|
|
3
|
+
LineList = "line-list",
|
|
4
|
+
LineStrip = "line-strip",
|
|
5
|
+
TriangleList = "triangle-list",
|
|
6
|
+
TriangleStrip = "triangle-strip",
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export enum GPUCompareFunction {
|
|
10
|
+
Never = "never",
|
|
11
|
+
Less = "less",
|
|
12
|
+
Equal = "equal",
|
|
13
|
+
LessEqual = "less-equal",
|
|
14
|
+
Greater = "greater",
|
|
15
|
+
NotEqual = "not-equal",
|
|
16
|
+
GreaterEqual = "greater-equal",
|
|
17
|
+
Always = "always",
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export enum GPUStoreOp {
|
|
21
|
+
Store = "store",
|
|
22
|
+
Discard = "discard",
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export enum GPULoadOp {
|
|
26
|
+
Load = "load",
|
|
27
|
+
Clear = "clear",
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export enum GPUFrontFace {
|
|
31
|
+
CCW = "ccw",
|
|
32
|
+
CW = "cw",
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export enum GPUCullMode {
|
|
36
|
+
None = "none",
|
|
37
|
+
Front = "front",
|
|
38
|
+
Back = "back",
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export enum GPUIndexFormat {
|
|
42
|
+
Uint16 = "uint16",
|
|
43
|
+
Uint32 = "uint32",
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export enum GPUVertexFormat {
|
|
47
|
+
Uint8x2 = "uint8x2",
|
|
48
|
+
Uint8x4 = "uint8x4",
|
|
49
|
+
Sint8x2 = "sint8x2",
|
|
50
|
+
Sint8x4 = "sint8x4",
|
|
51
|
+
Unorm8x2 = "unorm8x2",
|
|
52
|
+
Unorm8x4 = "unorm8x4",
|
|
53
|
+
Snorm8x2 = "snorm8x2",
|
|
54
|
+
Snorm8x4 = "snorm8x4",
|
|
55
|
+
Uint16x2 = "uint16x2",
|
|
56
|
+
Uint16x4 = "uint16x4",
|
|
57
|
+
Sint16x2 = "sint16x2",
|
|
58
|
+
Sint16x4 = "sint16x4",
|
|
59
|
+
Unorm16x2 = "unorm16x2",
|
|
60
|
+
Unorm16x4 = "unorm16x4",
|
|
61
|
+
Snorm16x2 = "snorm16x2",
|
|
62
|
+
Snorm16x4 = "snorm16x4",
|
|
63
|
+
Float16x2 = "float16x2",
|
|
64
|
+
Float16x4 = "float16x4",
|
|
65
|
+
Float32 = "float32",
|
|
66
|
+
Float32x2 = "float32x2",
|
|
67
|
+
Float32x3 = "float32x3",
|
|
68
|
+
Float32x4 = "float32x4",
|
|
69
|
+
Uint32 = "uint32",
|
|
70
|
+
Uint32x2 = "uint32x2",
|
|
71
|
+
Uint32x3 = "uint32x3",
|
|
72
|
+
Uint32x4 = "uint32x4",
|
|
73
|
+
Sint32 = "sint32",
|
|
74
|
+
Sint32x2 = "sint32x2",
|
|
75
|
+
Sint32x3 = "sint32x3",
|
|
76
|
+
Sint32x4 = "sint32x4",
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
export enum GPUTextureFormat {
|
|
80
|
+
// 8-bit formats
|
|
81
|
+
|
|
82
|
+
R8Unorm = "r8unorm",
|
|
83
|
+
R8Snorm = "r8snorm",
|
|
84
|
+
R8Uint = "r8uint",
|
|
85
|
+
R8Sint = "r8sint",
|
|
86
|
+
|
|
87
|
+
// 16-bit formats
|
|
88
|
+
|
|
89
|
+
R16Uint = "r16uint",
|
|
90
|
+
R16Sint = "r16sint",
|
|
91
|
+
R16Float = "r16float",
|
|
92
|
+
RG8Unorm = "rg8unorm",
|
|
93
|
+
RG8Snorm = "rg8snorm",
|
|
94
|
+
RG8Uint = "rg8uint",
|
|
95
|
+
RG8Sint = "rg8sint",
|
|
96
|
+
|
|
97
|
+
// 32-bit formats
|
|
98
|
+
|
|
99
|
+
R32Uint = "r32uint",
|
|
100
|
+
R32Sint = "r32sint",
|
|
101
|
+
R32Float = "r32float",
|
|
102
|
+
RG16Uint = "rg16uint",
|
|
103
|
+
RG16Sint = "rg16sint",
|
|
104
|
+
RG16Float = "rg16float",
|
|
105
|
+
RGBA8Unorm = "rgba8unorm",
|
|
106
|
+
RGBA8UnormSRGB = "rgba8unorm-srgb",
|
|
107
|
+
RGBA8Snorm = "rgba8snorm",
|
|
108
|
+
RGBA8Uint = "rgba8uint",
|
|
109
|
+
RGBA8Sint = "rgba8sint",
|
|
110
|
+
BGRA8Unorm = "bgra8unorm",
|
|
111
|
+
BGRA8UnormSRGB = "bgra8unorm-srgb",
|
|
112
|
+
// Packed 32-bit formats
|
|
113
|
+
RGB9E5UFloat = "rgb9e5ufloat",
|
|
114
|
+
RGB10A2Unorm = "rgb10a2unorm",
|
|
115
|
+
RG11B10uFloat = "rgb10a2unorm",
|
|
116
|
+
|
|
117
|
+
// 64-bit formats
|
|
118
|
+
|
|
119
|
+
RG32Uint = "rg32uint",
|
|
120
|
+
RG32Sint = "rg32sint",
|
|
121
|
+
RG32Float = "rg32float",
|
|
122
|
+
RGBA16Uint = "rgba16uint",
|
|
123
|
+
RGBA16Sint = "rgba16sint",
|
|
124
|
+
RGBA16Float = "rgba16float",
|
|
125
|
+
|
|
126
|
+
// 128-bit formats
|
|
127
|
+
|
|
128
|
+
RGBA32Uint = "rgba32uint",
|
|
129
|
+
RGBA32Sint = "rgba32sint",
|
|
130
|
+
RGBA32Float = "rgba32float",
|
|
131
|
+
|
|
132
|
+
// Depth and stencil formats
|
|
133
|
+
|
|
134
|
+
Stencil8 = "stencil8",
|
|
135
|
+
Depth16Unorm = "depth16unorm",
|
|
136
|
+
Depth24Plus = "depth24plus",
|
|
137
|
+
Depth24PlusStencil8 = "depth24plus-stencil8",
|
|
138
|
+
Depth32Float = "depth32float",
|
|
139
|
+
|
|
140
|
+
// 'depth32float-stencil8' extension
|
|
141
|
+
|
|
142
|
+
Depth32FloatStencil8 = "depth32float-stencil8",
|
|
143
|
+
|
|
144
|
+
// BC compressed formats usable if 'texture-compression-bc' is both
|
|
145
|
+
// supported by the device/user agent and enabled in requestDevice.
|
|
146
|
+
|
|
147
|
+
BC1RGBAUnorm = "bc1-rgba-unorm",
|
|
148
|
+
BC1RGBAUnormSRGB = "bc1-rgba-unorm-srgb",
|
|
149
|
+
BC2RGBAUnorm = "bc2-rgba-unorm",
|
|
150
|
+
BC2RGBAUnormSRGB = "bc2-rgba-unorm-srgb",
|
|
151
|
+
BC3RGBAUnorm = "bc3-rgba-unorm",
|
|
152
|
+
BC3RGBAUnormSRGB = "bc3-rgba-unorm-srgb",
|
|
153
|
+
BC4RUnorm = "bc4-r-unorm",
|
|
154
|
+
BC4RSnorm = "bc4-r-snorm",
|
|
155
|
+
BC5RGUnorm = "bc5-rg-unorm",
|
|
156
|
+
BC5RGSnorm = "bc5-rg-snorm",
|
|
157
|
+
BC6HRGBUFloat = "bc6h-rgb-ufloat",
|
|
158
|
+
BC6HRGBFloat = "bc6h-rgb-float",
|
|
159
|
+
BC7RGBAUnorm = "bc7-rgba-unorm",
|
|
160
|
+
BC7RGBAUnormSRGB = "bc7-rgba-srgb",
|
|
161
|
+
|
|
162
|
+
// ETC2 compressed formats usable if 'texture-compression-etc2' is both
|
|
163
|
+
// supported by the device/user agent and enabled in requestDevice.
|
|
164
|
+
|
|
165
|
+
ETC2RGB8Unorm = "etc2-rgb8unorm",
|
|
166
|
+
ETC2RGB8UnormSRGB = "etc2-rgb8unorm-srgb",
|
|
167
|
+
ETC2RGB8A1Unorm = "etc2-rgb8a1unorm",
|
|
168
|
+
ETC2RGB8A1UnormSRGB = "etc2-rgb8a1unorm-srgb",
|
|
169
|
+
ETC2RGBA8Unorm = "etc2-rgba8unorm",
|
|
170
|
+
ETC2RGBA8UnormSRGB = "etc2-rgba8unorm-srgb",
|
|
171
|
+
EACR11Unorm = "eac-r11unorm",
|
|
172
|
+
EACR11Snorm = "eac-r11snorm",
|
|
173
|
+
EACRG11Unorm = "eac-rg11unorm",
|
|
174
|
+
EACRG11Snorm = "eac-rg11snorm",
|
|
175
|
+
|
|
176
|
+
// ASTC compressed formats usable if 'texture-compression-astc' is both
|
|
177
|
+
// supported by the device/user agent and enabled in requestDevice.
|
|
178
|
+
|
|
179
|
+
ASTC4x4Unorm = "astc-4x4-unorm",
|
|
180
|
+
ASTC4x4UnormSRGB = "astc-4x4-unorm-srgb",
|
|
181
|
+
ASTC5x4Unorm = "astc-5x4-unorm",
|
|
182
|
+
ASTC5x4UnormSRGB = "astc-5x4-unorm-srgb",
|
|
183
|
+
ASTC5x5Unorm = "astc-5x5-unorm",
|
|
184
|
+
ASTC5x5UnormSRGB = "astc-5x5-unorm-srgb",
|
|
185
|
+
ASTC6x5Unorm = "astc-6x5-unorm",
|
|
186
|
+
ASTC6x5UnormSRGB = "astc-6x5-unorm-srgb",
|
|
187
|
+
ASTC6x6Unorm = "astc-6x6-unorm",
|
|
188
|
+
ASTC6x6UnormSRGB = "astc-6x6-unorm-srgb",
|
|
189
|
+
ASTC8x5Unorm = "astc-8x5-unorm",
|
|
190
|
+
ASTC8x5UnormSRGB = "astc-8x5-unorm-srgb",
|
|
191
|
+
ASTC8x6Unorm = "astc-8x6-unorm",
|
|
192
|
+
ASTC8x6UnormSRGB = "astc-8x6-unorm-srgb",
|
|
193
|
+
ASTC8x8Unorm = "astc-8x8-unorm",
|
|
194
|
+
ASTC8x8UnormSRGB = "astc-8x8-unorm-srgb",
|
|
195
|
+
ASTC10x5Unorm = "astc-10x5-unorm",
|
|
196
|
+
ASTC10x5UnormSRGB = "astc-10x5-unorm-srgb",
|
|
197
|
+
ASTC10x6Unorm = "astc-10x6-unorm",
|
|
198
|
+
ASTC10x6UnormSRGB = "astc-10x6-unorm-srgb",
|
|
199
|
+
ASTC10x8Unorm = "astc-10x8-unorm",
|
|
200
|
+
ASTC10x8UnormSRGB = "astc-10x8-unorm-srgb",
|
|
201
|
+
ASTC10x10Unorm = "astc-10x10-unorm",
|
|
202
|
+
ASTC10x10UnormSRGB = "astc-10x10-unorm-srgb",
|
|
203
|
+
ASTC12x10Unorm = "astc-12x10-unorm",
|
|
204
|
+
ASTC12x10UnormSRGB = "astc-12x10-unorm-srgb",
|
|
205
|
+
ASTC12x12Unorm = "astc-12x12-unorm",
|
|
206
|
+
ASTC12x12UnormSRGB = "astc-12x12-unorm-srgb",
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
export enum GPUAddressMode {
|
|
210
|
+
ClampToEdge = "clamp-to-edge",
|
|
211
|
+
Repeat = "repeat",
|
|
212
|
+
MirrorRepeat = "mirror-repeat",
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
export enum GPUFilterMode {
|
|
216
|
+
Linear = "linear",
|
|
217
|
+
Nearest = "nearest",
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
export enum GPUBlendFactor {
|
|
221
|
+
Zero = "zero",
|
|
222
|
+
One = "one",
|
|
223
|
+
Src = "src",
|
|
224
|
+
OneMinusSrc = "one-minus-src",
|
|
225
|
+
SrcAlpha = "src-alpha",
|
|
226
|
+
OneMinusSrcAlpha = "one-minus-src-alpha",
|
|
227
|
+
Dst = "dst",
|
|
228
|
+
OneMinusDstColor = "one-minus-dst",
|
|
229
|
+
DstAlpha = "dst-alpha",
|
|
230
|
+
OneMinusDstAlpha = "one-minus-dst-alpha",
|
|
231
|
+
SrcAlphaSaturated = "src-alpha-saturated",
|
|
232
|
+
Constant = "constant",
|
|
233
|
+
OneMinusConstant = "one-minus-constant",
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
export enum GPUBlendOperation {
|
|
237
|
+
Add = "add",
|
|
238
|
+
Subtract = "subtract",
|
|
239
|
+
ReverseSubtract = "reverse-subtract",
|
|
240
|
+
Min = "min",
|
|
241
|
+
Max = "max",
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
export enum GPUColorWriteFlags {
|
|
245
|
+
None = 0,
|
|
246
|
+
Red = 0x1,
|
|
247
|
+
Green = 0x2,
|
|
248
|
+
Blue = 0x4,
|
|
249
|
+
Alpha = 0x8,
|
|
250
|
+
All = 0xF,
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
export enum GPUStencilOperation {
|
|
254
|
+
Keep = "keep",
|
|
255
|
+
Zero = "zero",
|
|
256
|
+
Replace = "replace",
|
|
257
|
+
Invert = "invert",
|
|
258
|
+
IncrementClamp = "increment-clamp",
|
|
259
|
+
DecrementClamp = "decrement-clamp",
|
|
260
|
+
IncrementWrap = "increment-wrap",
|
|
261
|
+
DecrementWrap = "decrement-wrap",
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
export enum GPUBufferBindingType {
|
|
265
|
+
Uniform = "uniform",
|
|
266
|
+
Storage = "storage",
|
|
267
|
+
ReadOnlyStorage = "read-only-storage",
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
export enum GPUStorageTextureAccess {
|
|
271
|
+
WriteOnly = "write-only",
|
|
272
|
+
ReadOnly = "read-only",
|
|
273
|
+
ReadWrite = "read-write",
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
export enum GPUSamplerBindingType {
|
|
277
|
+
Filtering = "filtering",
|
|
278
|
+
NonFiltering = "non-filtering",
|
|
279
|
+
Comparison = "comparison",
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
export enum GPUTextureSampleType {
|
|
283
|
+
Float = "float",
|
|
284
|
+
UnfilterableFloat = "unfilterable-float",
|
|
285
|
+
Depth = "depth",
|
|
286
|
+
SInt = "sint",
|
|
287
|
+
UInt = "uint",
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
export enum GPUTextureDimension {
|
|
291
|
+
OneD = "1d",
|
|
292
|
+
TwoD = "2d",
|
|
293
|
+
ThreeD = "3d",
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
export enum GPUTextureViewDimension {
|
|
297
|
+
OneD = "1d",
|
|
298
|
+
TwoD = "2d",
|
|
299
|
+
TwoDArray = "2d-array",
|
|
300
|
+
Cube = "cube",
|
|
301
|
+
CubeArray = "cube-array",
|
|
302
|
+
ThreeD = "3d",
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
export enum GPUTextureAspect {
|
|
306
|
+
All = "all",
|
|
307
|
+
StencilOnly = "stencil-only",
|
|
308
|
+
DepthOnly = "depth-only",
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
export enum GPUInputStepMode {
|
|
312
|
+
Vertex = "vertex",
|
|
313
|
+
Instance = "instance",
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
export enum GPUFeatureName {
|
|
317
|
+
DepthClipControl = "depth-clip-control",
|
|
318
|
+
Depth32FloatStencil8 = "depth32float-stencil8",
|
|
319
|
+
TextureCompressionBC = "texture-compression-bc",
|
|
320
|
+
TextureCompressionETC2 = "texture-compression-etc2",
|
|
321
|
+
TextureCompressionASTC = "texture-compression-astc",
|
|
322
|
+
TimestampQuery = "timestamp-query",
|
|
323
|
+
IndirectFirstInstance = "indirect-first-instance",
|
|
324
|
+
ShaderF16 = "shader-f16",
|
|
325
|
+
RG11B10UFloat = "rg11b10ufloat-renderable",
|
|
326
|
+
BGRA8UNormStorage = "bgra8unorm-storage",
|
|
327
|
+
Float32Filterable = "float32-filterable",
|
|
328
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { Object3DEventMap } from "../../core/Object3D.js";
|
|
2
|
+
import { Vector3 } from "../../math/Vector3.js";
|
|
3
|
+
import { Group } from "../../objects/Group.js";
|
|
4
|
+
|
|
5
|
+
export type XRControllerEventType = XRSessionEventType | XRInputSourceEventType | "disconnected" | "connected";
|
|
6
|
+
|
|
7
|
+
export class XRJointSpace extends Group {
|
|
8
|
+
readonly jointRadius: number | undefined;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export type XRHandJoints = Record<XRHandJoint, XRJointSpace>;
|
|
12
|
+
|
|
13
|
+
export interface XRHandInputState {
|
|
14
|
+
pinching: boolean;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface WebXRSpaceEventMap extends Object3DEventMap {
|
|
18
|
+
select: { data: XRInputSource };
|
|
19
|
+
selectstart: { data: XRInputSource };
|
|
20
|
+
selectend: { data: XRInputSource };
|
|
21
|
+
squeeze: { data: XRInputSource };
|
|
22
|
+
squeezestart: { data: XRInputSource };
|
|
23
|
+
squeezeend: { data: XRInputSource };
|
|
24
|
+
|
|
25
|
+
connected: { data: XRInputSource };
|
|
26
|
+
disconnected: { data: XRInputSource };
|
|
27
|
+
|
|
28
|
+
pinchend: { handedness: XRHandedness; target: WebXRController }; // This Event break the THREE.EventDispatcher contract, replacing the target to the wrong instance.
|
|
29
|
+
pinchstart: { handedness: XRHandedness; target: WebXRController }; // This Event break the THREE.EventDispatcher contract, replacing the target to the wrong instance.
|
|
30
|
+
|
|
31
|
+
move: {};
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export class XRHandSpace extends Group<WebXRSpaceEventMap> {
|
|
35
|
+
readonly joints: Partial<XRHandJoints>;
|
|
36
|
+
readonly inputState: XRHandInputState;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export class XRTargetRaySpace extends Group<WebXRSpaceEventMap> {
|
|
40
|
+
hasLinearVelocity: boolean;
|
|
41
|
+
readonly linearVelocity: Vector3;
|
|
42
|
+
hasAngularVelocity: boolean;
|
|
43
|
+
readonly angularVelocity: Vector3;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export class XRGripSpace extends Group<WebXRSpaceEventMap> {
|
|
47
|
+
hasLinearVelocity: boolean;
|
|
48
|
+
readonly linearVelocity: Vector3;
|
|
49
|
+
hasAngularVelocity: boolean;
|
|
50
|
+
readonly angularVelocity: Vector3;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export class WebXRController {
|
|
54
|
+
constructor();
|
|
55
|
+
|
|
56
|
+
getHandSpace(): XRHandSpace;
|
|
57
|
+
getTargetRaySpace(): XRTargetRaySpace;
|
|
58
|
+
getGripSpace(): XRGripSpace;
|
|
59
|
+
dispatchEvent(event: { type: XRControllerEventType; data?: XRInputSource }): this;
|
|
60
|
+
connect(inputSource: XRInputSource): this;
|
|
61
|
+
disconnect(inputSource: XRInputSource): this;
|
|
62
|
+
update(inputSource: XRInputSource, frame: XRFrame, referenceSpace: XRReferenceSpace): this;
|
|
63
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Mesh } from "../../objects/Mesh.js";
|
|
2
|
+
import { Texture } from "../../textures/Texture.js";
|
|
3
|
+
import { WebGLRenderer } from "../WebGLRenderer.js";
|
|
4
|
+
import { WebXRArrayCamera } from "./WebXRManager.js";
|
|
5
|
+
|
|
6
|
+
export class WebXRDepthSensing {
|
|
7
|
+
texture: Texture | null;
|
|
8
|
+
mesh: Mesh | null;
|
|
9
|
+
|
|
10
|
+
depthNear: number;
|
|
11
|
+
depthFar: number;
|
|
12
|
+
|
|
13
|
+
constructor();
|
|
14
|
+
|
|
15
|
+
init(renderer: WebGLRenderer, depthData: XRWebGLDepthInformation, renderState: XRRenderState): void;
|
|
16
|
+
|
|
17
|
+
getMesh(cameraXR: WebXRArrayCamera): Mesh | null;
|
|
18
|
+
|
|
19
|
+
reset(): void;
|
|
20
|
+
|
|
21
|
+
getDepthTexture(): Texture | null;
|
|
22
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
/// <reference types="webxr" />
|
|
2
|
+
|
|
3
|
+
import { ArrayCamera } from "../../cameras/ArrayCamera.js";
|
|
4
|
+
import { PerspectiveCamera } from "../../cameras/PerspectiveCamera.js";
|
|
5
|
+
import { EventDispatcher } from "../../core/EventDispatcher.js";
|
|
6
|
+
import { Vector4 } from "../../math/Vector4.js";
|
|
7
|
+
import { Mesh } from "../../objects/Mesh.js";
|
|
8
|
+
import { Texture } from "../../textures/Texture.js";
|
|
9
|
+
import { WebGLRenderer } from "../WebGLRenderer.js";
|
|
10
|
+
import { XRGripSpace, XRHandSpace, XRTargetRaySpace } from "./WebXRController.js";
|
|
11
|
+
|
|
12
|
+
export type WebXRCamera = PerspectiveCamera & { viewport: Vector4 };
|
|
13
|
+
export type WebXRArrayCamera = Omit<ArrayCamera, "cameras"> & { cameras: [WebXRCamera, WebXRCamera] };
|
|
14
|
+
|
|
15
|
+
export interface WebXRManagerEventMap {
|
|
16
|
+
sessionstart: {};
|
|
17
|
+
sessionend: {};
|
|
18
|
+
planeadded: { data: XRPlane };
|
|
19
|
+
planeremoved: { data: XRPlane };
|
|
20
|
+
planechanged: { data: XRPlane };
|
|
21
|
+
planesdetected: { data: XRPlaneSet };
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export class WebXRManager extends EventDispatcher<WebXRManagerEventMap> {
|
|
25
|
+
/**
|
|
26
|
+
* @default true
|
|
27
|
+
*/
|
|
28
|
+
cameraAutoUpdate: boolean;
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* @default false
|
|
32
|
+
*/
|
|
33
|
+
enabled: boolean;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* @default false
|
|
37
|
+
*/
|
|
38
|
+
isPresenting: boolean;
|
|
39
|
+
|
|
40
|
+
constructor(renderer: WebGLRenderer, gl: WebGLRenderingContext);
|
|
41
|
+
|
|
42
|
+
getController: (index: number) => XRTargetRaySpace;
|
|
43
|
+
|
|
44
|
+
getControllerGrip: (index: number) => XRGripSpace;
|
|
45
|
+
|
|
46
|
+
getHand: (index: number) => XRHandSpace;
|
|
47
|
+
|
|
48
|
+
setFramebufferScaleFactor: (value: number) => void;
|
|
49
|
+
|
|
50
|
+
setReferenceSpaceType: (value: XRReferenceSpaceType) => void;
|
|
51
|
+
|
|
52
|
+
getReferenceSpace: () => XRReferenceSpace | null;
|
|
53
|
+
|
|
54
|
+
setReferenceSpace: (value: XRReferenceSpace) => void;
|
|
55
|
+
|
|
56
|
+
getBaseLayer: () => XRWebGLLayer | XRProjectionLayer;
|
|
57
|
+
|
|
58
|
+
getBinding: () => XRWebGLBinding;
|
|
59
|
+
|
|
60
|
+
getFrame: () => XRFrame;
|
|
61
|
+
|
|
62
|
+
getSession: () => XRSession | null;
|
|
63
|
+
|
|
64
|
+
setSession: (value: XRSession | null) => Promise<void>;
|
|
65
|
+
|
|
66
|
+
getEnvironmentBlendMode: () => XREnvironmentBlendMode | undefined;
|
|
67
|
+
|
|
68
|
+
getDepthTexture: () => Texture | null;
|
|
69
|
+
|
|
70
|
+
updateCamera: (camera: PerspectiveCamera) => void;
|
|
71
|
+
|
|
72
|
+
getCamera: () => WebXRArrayCamera;
|
|
73
|
+
|
|
74
|
+
getFoveation: () => number | undefined;
|
|
75
|
+
|
|
76
|
+
setFoveation: (value: number) => void;
|
|
77
|
+
|
|
78
|
+
hasDepthSensing: () => boolean;
|
|
79
|
+
|
|
80
|
+
getDepthSensingMesh: () => Mesh | null;
|
|
81
|
+
|
|
82
|
+
setAnimationLoop: (callback: XRFrameRequestCallback | null) => void;
|
|
83
|
+
|
|
84
|
+
dispose: () => void;
|
|
85
|
+
}
|