@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,17 @@
|
|
|
1
|
+
import { Camera, Object3D, Vector3, WebGLRenderer } from "three";
|
|
2
|
+
|
|
3
|
+
export class ViewHelper extends Object3D {
|
|
4
|
+
readonly isViewHelper: true;
|
|
5
|
+
|
|
6
|
+
animating: boolean;
|
|
7
|
+
center: Vector3;
|
|
8
|
+
|
|
9
|
+
render: (renderer: WebGLRenderer) => void;
|
|
10
|
+
handleClick: (event: MouseEvent) => boolean;
|
|
11
|
+
setLabels: (labelX?: string, labelY?: string, labelZ?: string) => void;
|
|
12
|
+
setLabelStyle: (font?: string, color?: string, radius?: number) => void;
|
|
13
|
+
update: (delta: number) => void;
|
|
14
|
+
dispose: () => void;
|
|
15
|
+
|
|
16
|
+
constructor(camera: Camera, domElement: HTMLElement);
|
|
17
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Camera, Group, Object3D, Object3DEventMap, Vector2, WebGLRenderer, XRTargetRaySpace } from "three";
|
|
2
|
+
|
|
3
|
+
export interface InteractiveObject3DEventMap extends Object3DEventMap {
|
|
4
|
+
hoveron: { data: Vector2 };
|
|
5
|
+
pointerdown: { data: Vector2 };
|
|
6
|
+
pointerup: { data: Vector2 };
|
|
7
|
+
pointermove: { data: Vector2 };
|
|
8
|
+
mousedown: { data: Vector2 };
|
|
9
|
+
mouseup: { data: Vector2 };
|
|
10
|
+
mousemove: { data: Vector2 };
|
|
11
|
+
click: { data: Vector2 };
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export class InteractiveObject3D extends Object3D<InteractiveObject3DEventMap> {}
|
|
15
|
+
|
|
16
|
+
export class InteractiveGroup extends Group {
|
|
17
|
+
listenToPointerEvents(renderer: WebGLRenderer, camera: Camera): void;
|
|
18
|
+
|
|
19
|
+
listenToXRControllerEvents(controller: XRTargetRaySpace): void;
|
|
20
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Camera, Frustum, Mesh, Object3D, Scene, Vector3 } from "three";
|
|
2
|
+
|
|
3
|
+
export class SelectionBox {
|
|
4
|
+
constructor(camera: Camera, scene: Scene, deep?: number);
|
|
5
|
+
camera: Camera;
|
|
6
|
+
collection: Mesh[];
|
|
7
|
+
deep: number;
|
|
8
|
+
endPoint: Vector3;
|
|
9
|
+
scene: Scene;
|
|
10
|
+
startPoint: Vector3;
|
|
11
|
+
instances: Record<string, number[]>;
|
|
12
|
+
|
|
13
|
+
select(startPoint?: Vector3, endPoint?: Vector3): Mesh[];
|
|
14
|
+
updateFrustum(startPoint: Vector3, endPoint: Vector3): void;
|
|
15
|
+
searchChildInFrustum(frustum: Frustum, object: Object3D): void;
|
|
16
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Vector2, WebGLRenderer } from "three";
|
|
2
|
+
|
|
3
|
+
export class SelectionHelper {
|
|
4
|
+
constructor(renderer: WebGLRenderer, cssClassName: string);
|
|
5
|
+
element: HTMLElement;
|
|
6
|
+
isDown: boolean;
|
|
7
|
+
enabled: boolean;
|
|
8
|
+
pointBottomRight: Vector2;
|
|
9
|
+
pointTopLeft: Vector2;
|
|
10
|
+
renderer: WebGLRenderer;
|
|
11
|
+
startPoint: Vector2;
|
|
12
|
+
|
|
13
|
+
onSelectStart(event: Event): void;
|
|
14
|
+
onSelectMove(event: Event): void;
|
|
15
|
+
onSelectOver(event: Event): void;
|
|
16
|
+
dispose(): void;
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "fflate";
|
|
@@ -0,0 +1,608 @@
|
|
|
1
|
+
export type KeyToValueOfType<T, V> = { [K in keyof T]: T[K] extends V ? K : never }[keyof T];
|
|
2
|
+
|
|
3
|
+
export default GUI;
|
|
4
|
+
export class GUI {
|
|
5
|
+
/**
|
|
6
|
+
* Creates a panel that holds controllers.
|
|
7
|
+
* @example
|
|
8
|
+
* new GUI();
|
|
9
|
+
* new GUI( { container: document.getElementById( 'custom' ) } );
|
|
10
|
+
*
|
|
11
|
+
* @param [options]
|
|
12
|
+
* @param [options.autoPlace=true]
|
|
13
|
+
* Adds the GUI to `document.body` and fixes it to the top right of the page.
|
|
14
|
+
*
|
|
15
|
+
* @param [options.container]
|
|
16
|
+
* Adds the GUI to this DOM element. Overrides `autoPlace`.
|
|
17
|
+
*
|
|
18
|
+
* @param [options.width=245]
|
|
19
|
+
* Width of the GUI in pixels, usually set when name labels become too long. Note that you can make
|
|
20
|
+
* name labels wider in CSS with `.lil‑gui { ‑‑name‑width: 55% }`
|
|
21
|
+
*
|
|
22
|
+
* @param [options.title=Controls]
|
|
23
|
+
* Name to display in the title bar.
|
|
24
|
+
*
|
|
25
|
+
* @param [options.injectStyles=true]
|
|
26
|
+
* Injects the default stylesheet into the page if this is the first GUI.
|
|
27
|
+
* Pass `false` to use your own stylesheet.
|
|
28
|
+
*
|
|
29
|
+
* @param [options.touchStyles=true]
|
|
30
|
+
* Makes controllers larger on touch devices. Pass `false` to disable touch styles.
|
|
31
|
+
*
|
|
32
|
+
* @param [options.parent]
|
|
33
|
+
* Adds this GUI as a child in another GUI. Usually this is done for you by `addFolder()`.
|
|
34
|
+
*/
|
|
35
|
+
constructor({
|
|
36
|
+
parent,
|
|
37
|
+
autoPlace,
|
|
38
|
+
container,
|
|
39
|
+
width,
|
|
40
|
+
title,
|
|
41
|
+
injectStyles,
|
|
42
|
+
touchStyles,
|
|
43
|
+
}?: {
|
|
44
|
+
autoPlace?: boolean;
|
|
45
|
+
container?: HTMLElement;
|
|
46
|
+
width?: number;
|
|
47
|
+
title?: string;
|
|
48
|
+
injectStyles?: boolean;
|
|
49
|
+
touchStyles?: number;
|
|
50
|
+
parent?: GUI;
|
|
51
|
+
});
|
|
52
|
+
/**
|
|
53
|
+
* The GUI containing this folder, or `undefined` if this is the root GUI.
|
|
54
|
+
*/
|
|
55
|
+
parent: GUI;
|
|
56
|
+
/**
|
|
57
|
+
* The top level GUI containing this folder, or `this` if this is the root GUI.
|
|
58
|
+
*/
|
|
59
|
+
root: GUI;
|
|
60
|
+
/**
|
|
61
|
+
* The list of controllers and folders contained by this GUI.
|
|
62
|
+
*/
|
|
63
|
+
children: Array<GUI | Controller>;
|
|
64
|
+
/**
|
|
65
|
+
* The list of controllers contained by this GUI.
|
|
66
|
+
*/
|
|
67
|
+
controllers: Controller[];
|
|
68
|
+
/**
|
|
69
|
+
* The list of folders contained by this GUI.
|
|
70
|
+
*/
|
|
71
|
+
folders: GUI[];
|
|
72
|
+
/**
|
|
73
|
+
* Used to determine if the GUI is closed. Use `gui.open()` or `gui.close()` to change this.
|
|
74
|
+
*/
|
|
75
|
+
_closed: boolean;
|
|
76
|
+
/**
|
|
77
|
+
* Used to determine if the GUI is hidden. Use `gui.show()` or `gui.hide()` to change this.
|
|
78
|
+
*/
|
|
79
|
+
_hidden: boolean;
|
|
80
|
+
/**
|
|
81
|
+
* The outermost container element.
|
|
82
|
+
*/
|
|
83
|
+
domElement: HTMLElement;
|
|
84
|
+
/**
|
|
85
|
+
* The DOM element that contains the title.
|
|
86
|
+
*/
|
|
87
|
+
$title: HTMLElement;
|
|
88
|
+
/**
|
|
89
|
+
* The DOM element that contains children.
|
|
90
|
+
*/
|
|
91
|
+
$children: HTMLElement;
|
|
92
|
+
/**
|
|
93
|
+
* Adds a controller to the GUI, inferring controller type using the `typeof` operator.
|
|
94
|
+
* @example
|
|
95
|
+
* gui.add( object, 'property' );
|
|
96
|
+
* gui.add( object, 'number', 0, 100, 1 );
|
|
97
|
+
* gui.add( object, 'options', [ 1, 2, 3 ] );
|
|
98
|
+
*
|
|
99
|
+
* @param object The object the controller will modify.
|
|
100
|
+
* @param property Name of the property to control.
|
|
101
|
+
* @param [$1] Minimum value for number controllers, or the set of
|
|
102
|
+
* selectable values for a dropdown.
|
|
103
|
+
* @param [max] Maximum value for number controllers.
|
|
104
|
+
* @param [step] Step value for number controllers.
|
|
105
|
+
*/
|
|
106
|
+
add<T, K extends keyof T>(
|
|
107
|
+
object: T,
|
|
108
|
+
property: K,
|
|
109
|
+
options: ReadonlyArray<T[K]> | Record<string, T[K]>,
|
|
110
|
+
): OptionController<T, K>;
|
|
111
|
+
add<T, K extends KeyToValueOfType<T, number>>(
|
|
112
|
+
object: T,
|
|
113
|
+
property: K,
|
|
114
|
+
min?: number,
|
|
115
|
+
max?: number,
|
|
116
|
+
step?: number,
|
|
117
|
+
): NumberController<T, K>;
|
|
118
|
+
add<T, K extends KeyToValueOfType<T, boolean>>(object: T, property: K, options?: never): BooleanController<T, K>;
|
|
119
|
+
add<T, K extends KeyToValueOfType<T, string>>(object: T, property: K, options?: never): StringController<T, K>;
|
|
120
|
+
add<T, K extends KeyToValueOfType<T, (this: T) => void>>(
|
|
121
|
+
object: T,
|
|
122
|
+
property: K,
|
|
123
|
+
options?: never,
|
|
124
|
+
): FunctionController<T, K>;
|
|
125
|
+
/**
|
|
126
|
+
* Adds a color controller to the GUI.
|
|
127
|
+
* @example
|
|
128
|
+
* params = {
|
|
129
|
+
* cssColor: '#ff00ff',
|
|
130
|
+
* rgbColor: { r: 0, g: 0.2, b: 0.4 },
|
|
131
|
+
* customRange: [ 0, 127, 255 ],
|
|
132
|
+
* };
|
|
133
|
+
*
|
|
134
|
+
* gui.addColor( params, 'cssColor' );
|
|
135
|
+
* gui.addColor( params, 'rgbColor' );
|
|
136
|
+
* gui.addColor( params, 'customRange', 255 );
|
|
137
|
+
*
|
|
138
|
+
* @param object The object the controller will modify.
|
|
139
|
+
* @param property Name of the property to control.
|
|
140
|
+
* @param rgbScale Maximum value for a color channel when using an RGB color. You may
|
|
141
|
+
* need to set this to 255 if your colors are too bright.
|
|
142
|
+
*/
|
|
143
|
+
addColor<T, K extends keyof T>(object: T, property: K, rgbScale?: number): ColorController<T, K>;
|
|
144
|
+
/**
|
|
145
|
+
* Adds a folder to the GUI, which is just another GUI. This method returns
|
|
146
|
+
* the nested GUI so you can add controllers to it.
|
|
147
|
+
* @example
|
|
148
|
+
* const folder = gui.addFolder( 'Position' );
|
|
149
|
+
* folder.add( position, 'x' );
|
|
150
|
+
* folder.add( position, 'y' );
|
|
151
|
+
* folder.add( position, 'z' );
|
|
152
|
+
*
|
|
153
|
+
* @param title Name to display in the folder's title bar.
|
|
154
|
+
*/
|
|
155
|
+
addFolder(title: string): GUI;
|
|
156
|
+
/**
|
|
157
|
+
* Recalls values that were saved with `gui.save()`.
|
|
158
|
+
* @param obj
|
|
159
|
+
* @param recursive Pass false to exclude folders descending from this GUI.
|
|
160
|
+
*/
|
|
161
|
+
load(obj: object, recursive?: boolean): this;
|
|
162
|
+
/**
|
|
163
|
+
* Returns an object mapping controller names to values. The object can be passed to `gui.load()` to
|
|
164
|
+
* recall these values.
|
|
165
|
+
* @example
|
|
166
|
+
* {
|
|
167
|
+
* controllers: {
|
|
168
|
+
* prop1: 1,
|
|
169
|
+
* prop2: 'value',
|
|
170
|
+
* ...
|
|
171
|
+
* },
|
|
172
|
+
* folders: {
|
|
173
|
+
* folderName1: { controllers, folders },
|
|
174
|
+
* folderName2: { controllers, folders }
|
|
175
|
+
* ...
|
|
176
|
+
* }
|
|
177
|
+
* }
|
|
178
|
+
*
|
|
179
|
+
* @param recursive Pass false to exclude folders descending from this GUI.
|
|
180
|
+
*/
|
|
181
|
+
save(recursive?: boolean): object;
|
|
182
|
+
/**
|
|
183
|
+
* Opens a GUI or folder. GUI and folders are open by default.
|
|
184
|
+
* @param open Pass false to close
|
|
185
|
+
* @example
|
|
186
|
+
* gui.open(); // open
|
|
187
|
+
* gui.open( false ); // close
|
|
188
|
+
* gui.open( gui._closed ); // toggle
|
|
189
|
+
*/
|
|
190
|
+
open(open?: boolean): this;
|
|
191
|
+
/**
|
|
192
|
+
* Closes the GUI.
|
|
193
|
+
*/
|
|
194
|
+
close(): this;
|
|
195
|
+
/**
|
|
196
|
+
* Shows the GUI after it's been hidden.
|
|
197
|
+
* @param show
|
|
198
|
+
* @example
|
|
199
|
+
* gui.show();
|
|
200
|
+
* gui.show( false ); // hide
|
|
201
|
+
* gui.show( gui._hidden ); // toggle
|
|
202
|
+
*/
|
|
203
|
+
show(show?: boolean): this;
|
|
204
|
+
/**
|
|
205
|
+
* Hides the GUI.
|
|
206
|
+
*/
|
|
207
|
+
hide(): this;
|
|
208
|
+
openAnimated(open?: boolean): GUI;
|
|
209
|
+
/**
|
|
210
|
+
* Change the title of this GUI.
|
|
211
|
+
* @param title
|
|
212
|
+
*/
|
|
213
|
+
title(title: string): this;
|
|
214
|
+
/**
|
|
215
|
+
* Current title of the GUI. Use `gui.title( 'Title' )` to modify this value.
|
|
216
|
+
*/
|
|
217
|
+
_title: string;
|
|
218
|
+
/**
|
|
219
|
+
* Resets all controllers to their initial values.
|
|
220
|
+
* @param recursive Pass false to exclude folders descending from this GUI.
|
|
221
|
+
*/
|
|
222
|
+
reset(recursive?: boolean): this;
|
|
223
|
+
/**
|
|
224
|
+
* Pass a function to be called whenever a controller in this GUI changes.
|
|
225
|
+
* @param callback
|
|
226
|
+
* @example
|
|
227
|
+
* gui.onChange( event => {
|
|
228
|
+
* event.object // object that was modified
|
|
229
|
+
* event.property // string, name of property
|
|
230
|
+
* event.value // new value of controller
|
|
231
|
+
* event.controller // controller that was modified
|
|
232
|
+
* } );
|
|
233
|
+
*/
|
|
234
|
+
onChange(
|
|
235
|
+
callback: (arg0: { object: object; property: string; value: unknown; controller: Controller }) => void,
|
|
236
|
+
): this;
|
|
237
|
+
/**
|
|
238
|
+
* Used to access the function bound to `onChange` events. Don't modify this value
|
|
239
|
+
* directly. Use the `gui.onChange( callback )` method instead.
|
|
240
|
+
*/
|
|
241
|
+
_onChange: (arg0: { object: object; property: string; value: unknown; controller: Controller }) => void;
|
|
242
|
+
_callOnChange(controller: Controller): void;
|
|
243
|
+
/**
|
|
244
|
+
* Pass a function to be called whenever a controller in this GUI has finished changing.
|
|
245
|
+
* @param callback
|
|
246
|
+
* @example
|
|
247
|
+
* gui.onFinishChange( event => {
|
|
248
|
+
* event.object // object that was modified
|
|
249
|
+
* event.property // string, name of property
|
|
250
|
+
* event.value // new value of controller
|
|
251
|
+
* event.controller // controller that was modified
|
|
252
|
+
* } );
|
|
253
|
+
*/
|
|
254
|
+
onFinishChange(
|
|
255
|
+
callback: (arg0: { object: object; property: string; value: unknown; controller: Controller }) => void,
|
|
256
|
+
): this;
|
|
257
|
+
/**
|
|
258
|
+
* Used to access the function bound to `onFinishChange` events. Don't modify this value
|
|
259
|
+
* directly. Use the `gui.onFinishChange( callback )` method instead.
|
|
260
|
+
*/
|
|
261
|
+
_onFinishChange: (arg0: { object: object; property: string; value: unknown; controller: Controller }) => void;
|
|
262
|
+
_callOnFinishChange(controller: Controller): void;
|
|
263
|
+
/**
|
|
264
|
+
* Destroys all DOM elements and event listeners associated with this GUI
|
|
265
|
+
*/
|
|
266
|
+
destroy(): void;
|
|
267
|
+
/**
|
|
268
|
+
* Returns an array of controllers contained by this GUI and its descendents.
|
|
269
|
+
*/
|
|
270
|
+
controllersRecursive(): Controller[];
|
|
271
|
+
/**
|
|
272
|
+
* Returns an array of folders contained by this GUI and its descendents.
|
|
273
|
+
*/
|
|
274
|
+
foldersRecursive(): GUI[];
|
|
275
|
+
}
|
|
276
|
+
export class BooleanController<
|
|
277
|
+
T = Record<string, unknown>,
|
|
278
|
+
K extends KeyToValueOfType<T, boolean> = KeyToValueOfType<T, boolean>,
|
|
279
|
+
> extends Controller<T, K> {
|
|
280
|
+
constructor(parent: GUI, object: T, property: K);
|
|
281
|
+
$input: HTMLInputElement;
|
|
282
|
+
}
|
|
283
|
+
export class ColorController<T = Record<string, unknown>, K extends keyof T = keyof T> extends Controller<T, K> {
|
|
284
|
+
constructor(parent: GUI, object: T, property: K, rgbScale: number);
|
|
285
|
+
$input: HTMLInputElement;
|
|
286
|
+
$text: HTMLInputElement;
|
|
287
|
+
$display: HTMLDivElement;
|
|
288
|
+
_format:
|
|
289
|
+
| {
|
|
290
|
+
isPrimitive: boolean;
|
|
291
|
+
match: (v: unknown) => boolean;
|
|
292
|
+
fromHexString: typeof normalizeColorString;
|
|
293
|
+
toHexString: typeof normalizeColorString;
|
|
294
|
+
}
|
|
295
|
+
| {
|
|
296
|
+
isPrimitive: boolean;
|
|
297
|
+
match: (arg: unknown) => arg is unknown[];
|
|
298
|
+
fromHexString(string: unknown, target: unknown, rgbScale?: number): void;
|
|
299
|
+
toHexString([r, g, b]: [unknown, unknown, unknown], rgbScale?: number): string;
|
|
300
|
+
}
|
|
301
|
+
| {
|
|
302
|
+
isPrimitive: boolean;
|
|
303
|
+
match: (v: unknown) => boolean;
|
|
304
|
+
fromHexString(string: unknown, target: unknown, rgbScale?: number): void;
|
|
305
|
+
toHexString(
|
|
306
|
+
{
|
|
307
|
+
r,
|
|
308
|
+
g,
|
|
309
|
+
b,
|
|
310
|
+
}: {
|
|
311
|
+
r: unknown;
|
|
312
|
+
g: unknown;
|
|
313
|
+
b: unknown;
|
|
314
|
+
},
|
|
315
|
+
rgbScale?: number,
|
|
316
|
+
): string;
|
|
317
|
+
};
|
|
318
|
+
_rgbScale: number;
|
|
319
|
+
_initialValueHexString: string | boolean;
|
|
320
|
+
_textFocused: boolean;
|
|
321
|
+
_setValueFromHexString(value: unknown): void;
|
|
322
|
+
}
|
|
323
|
+
/**
|
|
324
|
+
* lil-gui
|
|
325
|
+
* https://lil-gui.georgealways.com
|
|
326
|
+
* @version 0.17.0
|
|
327
|
+
* @author George Michael Brower
|
|
328
|
+
* @license MIT
|
|
329
|
+
*/
|
|
330
|
+
/**
|
|
331
|
+
* Base class for all controllers.
|
|
332
|
+
*/
|
|
333
|
+
export class Controller<T = Record<string, unknown>, K extends keyof T = keyof T> {
|
|
334
|
+
constructor(parent: GUI, object: T, property: K, className: string, widgetTag?: string);
|
|
335
|
+
/**
|
|
336
|
+
* The GUI that contains this controller.
|
|
337
|
+
*/
|
|
338
|
+
parent: GUI;
|
|
339
|
+
/**
|
|
340
|
+
* The object this controller will modify.
|
|
341
|
+
*/
|
|
342
|
+
object: T;
|
|
343
|
+
/**
|
|
344
|
+
* The name of the property to control.
|
|
345
|
+
*/
|
|
346
|
+
property: string;
|
|
347
|
+
/**
|
|
348
|
+
* Used to determine if the controller is disabled.
|
|
349
|
+
* Use `controller.disable( true|false )` to modify this value
|
|
350
|
+
*/
|
|
351
|
+
_disabled: boolean;
|
|
352
|
+
/**
|
|
353
|
+
* Used to determine if the Controller is hidden.
|
|
354
|
+
* Use `controller.show()` or `controller.hide()` to change this.
|
|
355
|
+
*/
|
|
356
|
+
_hidden: boolean;
|
|
357
|
+
/**
|
|
358
|
+
* The value of `object[ property ]` when the controller was created.
|
|
359
|
+
*/
|
|
360
|
+
initialValue: T[K];
|
|
361
|
+
/**
|
|
362
|
+
* The outermost container DOM element for this controller.
|
|
363
|
+
*/
|
|
364
|
+
domElement: HTMLElement;
|
|
365
|
+
/**
|
|
366
|
+
* The DOM element that contains the controller's name.
|
|
367
|
+
*/
|
|
368
|
+
$name: HTMLElement;
|
|
369
|
+
/**
|
|
370
|
+
* The DOM element that contains the controller's "widget" (which differs by controller type).
|
|
371
|
+
*/
|
|
372
|
+
$widget: HTMLElement;
|
|
373
|
+
/**
|
|
374
|
+
* The DOM element that receives the disabled attribute when using disable()
|
|
375
|
+
*/
|
|
376
|
+
$disable: HTMLElement;
|
|
377
|
+
_listenCallback(): void;
|
|
378
|
+
/**
|
|
379
|
+
* Sets the name of the controller and its label in the GUI.
|
|
380
|
+
* @param name
|
|
381
|
+
*/
|
|
382
|
+
name(name: string): this;
|
|
383
|
+
/**
|
|
384
|
+
* The controller's name. Use `controller.name( 'Name' )` to modify this value.
|
|
385
|
+
*/
|
|
386
|
+
_name: string;
|
|
387
|
+
/**
|
|
388
|
+
* Pass a function to be called whenever the value is modified by this controller.
|
|
389
|
+
* The function receives the new value as its first parameter. The value of `this` will be the
|
|
390
|
+
* controller.
|
|
391
|
+
* @param callback
|
|
392
|
+
* @example
|
|
393
|
+
* const controller = gui.add( object, 'property' );
|
|
394
|
+
*
|
|
395
|
+
* controller.onChange( function( v ) {
|
|
396
|
+
* console.log( 'The value is now ' + v );
|
|
397
|
+
* console.assert( this === controller );
|
|
398
|
+
* } );
|
|
399
|
+
*/
|
|
400
|
+
onChange(callback: (this: this, value: T[K]) => void): this;
|
|
401
|
+
/**
|
|
402
|
+
* Used to access the function bound to `onChange` events. Don't modify this value directly.
|
|
403
|
+
* Use the `controller.onChange( callback )` method instead.
|
|
404
|
+
*/
|
|
405
|
+
_onChange: (this: this, value: T[K]) => void;
|
|
406
|
+
/**
|
|
407
|
+
* Calls the onChange methods of this controller and its parent GUI.
|
|
408
|
+
*/
|
|
409
|
+
protected _callOnChange(): void;
|
|
410
|
+
_changed: boolean;
|
|
411
|
+
/**
|
|
412
|
+
* Pass a function to be called after this controller has been modified and loses focus.
|
|
413
|
+
* @param callback
|
|
414
|
+
* @example
|
|
415
|
+
* const controller = gui.add( object, 'property' );
|
|
416
|
+
*
|
|
417
|
+
* controller.onFinishChange( function( v ) {
|
|
418
|
+
* console.log( 'Changes complete: ' + v );
|
|
419
|
+
* console.assert( this === controller );
|
|
420
|
+
* } );
|
|
421
|
+
*/
|
|
422
|
+
onFinishChange(callback: (this: this, value: T[K]) => void): this;
|
|
423
|
+
/**
|
|
424
|
+
* Used to access the function bound to `onFinishChange` events. Don't modify this value
|
|
425
|
+
* directly. Use the `controller.onFinishChange( callback )` method instead.
|
|
426
|
+
*/
|
|
427
|
+
_onFinishChange: (this: this, value: T[K]) => void;
|
|
428
|
+
/**
|
|
429
|
+
* Should be called by Controller when its widgets lose focus.
|
|
430
|
+
*/
|
|
431
|
+
protected _callOnFinishChange(): void;
|
|
432
|
+
/**
|
|
433
|
+
* Sets the controller back to its initial value.
|
|
434
|
+
*/
|
|
435
|
+
reset(): this;
|
|
436
|
+
/**
|
|
437
|
+
* Enables this controller.
|
|
438
|
+
* @param enabled
|
|
439
|
+
* @example
|
|
440
|
+
* controller.enable();
|
|
441
|
+
* controller.enable( false ); // disable
|
|
442
|
+
* controller.enable( controller._disabled ); // toggle
|
|
443
|
+
*/
|
|
444
|
+
enable(enabled?: boolean): this;
|
|
445
|
+
/**
|
|
446
|
+
* Disables this controller.
|
|
447
|
+
* @param disabled
|
|
448
|
+
* @example
|
|
449
|
+
* controller.disable();
|
|
450
|
+
* controller.disable( false ); // enable
|
|
451
|
+
* controller.disable( !controller._disabled ); // toggle
|
|
452
|
+
*/
|
|
453
|
+
disable(disabled?: boolean): this;
|
|
454
|
+
/**
|
|
455
|
+
* Shows the Controller after it's been hidden.
|
|
456
|
+
* @param show
|
|
457
|
+
* @example
|
|
458
|
+
* controller.show();
|
|
459
|
+
* controller.show( false ); // hide
|
|
460
|
+
* controller.show( controller._hidden ); // toggle
|
|
461
|
+
*/
|
|
462
|
+
show(show?: boolean): this;
|
|
463
|
+
/**
|
|
464
|
+
* Hides the Controller.
|
|
465
|
+
*/
|
|
466
|
+
hide(): this;
|
|
467
|
+
/**
|
|
468
|
+
* Destroys this controller and replaces it with a new option controller. Provided as a more
|
|
469
|
+
* descriptive syntax for `gui.add`, but primarily for compatibility with dat.gui.
|
|
470
|
+
*
|
|
471
|
+
* Use caution, as this method will destroy old references to this controller. It will also
|
|
472
|
+
* change controller order if called out of sequence, moving the option controller to the end of
|
|
473
|
+
* the GUI.
|
|
474
|
+
* @example
|
|
475
|
+
* // safe usage
|
|
476
|
+
*
|
|
477
|
+
* gui.add( object1, 'property' ).options( [ 'a', 'b', 'c' ] );
|
|
478
|
+
* gui.add( object2, 'property' );
|
|
479
|
+
*
|
|
480
|
+
* // danger
|
|
481
|
+
*
|
|
482
|
+
* const c = gui.add( object1, 'property' );
|
|
483
|
+
* gui.add( object2, 'property' );
|
|
484
|
+
*
|
|
485
|
+
* c.options( [ 'a', 'b', 'c' ] );
|
|
486
|
+
* // controller is now at the end of the GUI even though it was added first
|
|
487
|
+
*
|
|
488
|
+
* assert( c.parent.children.indexOf( c ) === -1 )
|
|
489
|
+
* // c references a controller that no longer exists
|
|
490
|
+
*
|
|
491
|
+
* @param options
|
|
492
|
+
*/
|
|
493
|
+
options(options: object | unknown[]): Controller;
|
|
494
|
+
/**
|
|
495
|
+
* Calls `updateDisplay()` every animation frame. Pass `false` to stop listening.
|
|
496
|
+
* @param listen
|
|
497
|
+
*/
|
|
498
|
+
listen(listen?: boolean): this;
|
|
499
|
+
/**
|
|
500
|
+
* Used to determine if the controller is currently listening. Don't modify this value
|
|
501
|
+
* directly. Use the `controller.listen( true|false )` method instead.
|
|
502
|
+
*/
|
|
503
|
+
_listening: boolean;
|
|
504
|
+
_listenCallbackID: number;
|
|
505
|
+
_listenPrevValue: unknown;
|
|
506
|
+
/**
|
|
507
|
+
* Returns `object[ property ]`.
|
|
508
|
+
*/
|
|
509
|
+
getValue(): T[K];
|
|
510
|
+
/**
|
|
511
|
+
* Sets the value of `object[ property ]`, invokes any `onChange` handlers and updates the display.
|
|
512
|
+
* @param value
|
|
513
|
+
*/
|
|
514
|
+
setValue(value: T[K]): this;
|
|
515
|
+
/**
|
|
516
|
+
* Updates the display to keep it in sync with the current value. Useful for updating your
|
|
517
|
+
* controllers when their values have been modified outside of the GUI.
|
|
518
|
+
*/
|
|
519
|
+
updateDisplay(): this;
|
|
520
|
+
load(value: T[K]): this;
|
|
521
|
+
save(): T[K];
|
|
522
|
+
/**
|
|
523
|
+
* Destroys this controller and removes it from the parent GUI.
|
|
524
|
+
*/
|
|
525
|
+
destroy(): void;
|
|
526
|
+
}
|
|
527
|
+
export class FunctionController<
|
|
528
|
+
T = Record<string, unknown>,
|
|
529
|
+
K extends KeyToValueOfType<T, (this: T) => void> = KeyToValueOfType<T, (this: T) => void>,
|
|
530
|
+
> extends Controller<T, K> {
|
|
531
|
+
constructor(parent: GUI, object: T, property: K);
|
|
532
|
+
$button: HTMLButtonElement;
|
|
533
|
+
}
|
|
534
|
+
export class NumberController<
|
|
535
|
+
T = Record<string, unknown>,
|
|
536
|
+
K extends KeyToValueOfType<T, number> = KeyToValueOfType<T, number>,
|
|
537
|
+
> extends Controller<T, K> {
|
|
538
|
+
constructor(
|
|
539
|
+
parent: GUI,
|
|
540
|
+
object: T,
|
|
541
|
+
property: K,
|
|
542
|
+
min: number | undefined,
|
|
543
|
+
max: number | undefined,
|
|
544
|
+
step: number | undefined,
|
|
545
|
+
);
|
|
546
|
+
_decimals: unknown;
|
|
547
|
+
_min: unknown;
|
|
548
|
+
_max: unknown;
|
|
549
|
+
_step: unknown;
|
|
550
|
+
_stepExplicit: boolean;
|
|
551
|
+
_initInput(): void;
|
|
552
|
+
$input: HTMLInputElement;
|
|
553
|
+
_inputFocused: boolean;
|
|
554
|
+
_initSlider(): void;
|
|
555
|
+
_hasSlider: boolean;
|
|
556
|
+
$slider: HTMLDivElement;
|
|
557
|
+
$fill: HTMLDivElement;
|
|
558
|
+
_setDraggingStyle(active: unknown, axis?: string): void;
|
|
559
|
+
_getImplicitStep(): number;
|
|
560
|
+
_onUpdateMinMax(): void;
|
|
561
|
+
_normalizeMouseWheel(e: unknown): unknown;
|
|
562
|
+
_arrowKeyMultiplier(e: unknown): number;
|
|
563
|
+
_snap(value: unknown): number;
|
|
564
|
+
_clamp(value: unknown): unknown;
|
|
565
|
+
_snapClampSetValue(value: unknown): void;
|
|
566
|
+
get _hasScrollBar(): boolean;
|
|
567
|
+
get _hasMin(): boolean;
|
|
568
|
+
get _hasMax(): boolean;
|
|
569
|
+
/**
|
|
570
|
+
* Sets the minimum value. Only works on number controllers.
|
|
571
|
+
* @param min
|
|
572
|
+
*/
|
|
573
|
+
min(min: number): this;
|
|
574
|
+
/**
|
|
575
|
+
* Sets the maximum value. Only works on number controllers.
|
|
576
|
+
* @param max
|
|
577
|
+
*/
|
|
578
|
+
max(max: number): this;
|
|
579
|
+
/**
|
|
580
|
+
* Values set by this controller will be rounded to multiples of `step`. Only works on number
|
|
581
|
+
* controllers.
|
|
582
|
+
* @param step
|
|
583
|
+
*/
|
|
584
|
+
step(step: number): this;
|
|
585
|
+
/**
|
|
586
|
+
* Rounds the displayed value to a fixed number of decimals, without affecting the actual value
|
|
587
|
+
* like `step()`. Only works on number controllers.
|
|
588
|
+
* @example
|
|
589
|
+
* gui.add( object, 'property' ).listen().decimals( 4 );
|
|
590
|
+
* @param decimals
|
|
591
|
+
*/
|
|
592
|
+
decimals(decimals: number): this;
|
|
593
|
+
}
|
|
594
|
+
export class OptionController<T = Record<string, unknown>, K extends keyof T = keyof T> extends Controller<T, K> {
|
|
595
|
+
constructor(parent: GUI, object: T, property: K, options: ReadonlyArray<T[K]> | Record<string, T[K]>);
|
|
596
|
+
$select: HTMLSelectElement;
|
|
597
|
+
$display: HTMLDivElement;
|
|
598
|
+
_values: Array<T[K]>;
|
|
599
|
+
_names: unknown[];
|
|
600
|
+
}
|
|
601
|
+
export class StringController<
|
|
602
|
+
T = Record<string, unknown>,
|
|
603
|
+
K extends KeyToValueOfType<T, string> = KeyToValueOfType<T, string>,
|
|
604
|
+
> extends Controller<T, K> {
|
|
605
|
+
constructor(parent: GUI, object: T, property: K);
|
|
606
|
+
$input: HTMLInputElement;
|
|
607
|
+
}
|
|
608
|
+
declare function normalizeColorString(string: unknown): string | false;
|