super-three 0.184.0 → 0.185.0
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/build/three.cjs +1260 -927
- package/build/three.core.js +1104 -829
- package/build/three.core.min.js +1 -1
- package/build/three.module.js +156 -98
- package/build/three.module.min.js +1 -1
- package/build/three.tsl.js +11 -4
- package/build/three.tsl.min.js +1 -1
- package/build/three.webgpu.js +7538 -3367
- package/build/three.webgpu.min.js +1 -1
- package/build/three.webgpu.nodes.js +7538 -3366
- package/build/three.webgpu.nodes.min.js +1 -1
- package/examples/jsm/Addons.js +3 -0
- package/examples/jsm/controls/ArcballControls.js +6 -2
- package/examples/jsm/controls/FirstPersonControls.js +79 -42
- package/examples/jsm/controls/TransformControls.js +68 -15
- package/examples/jsm/csm/CSMFrustum.js +31 -6
- package/examples/jsm/csm/CSMShadowNode.js +4 -1
- package/examples/jsm/effects/AsciiEffect.js +14 -1
- package/examples/jsm/exporters/DRACOExporter.js +27 -6
- package/examples/jsm/exporters/GLTFExporter.js +114 -12
- package/examples/jsm/exporters/PLYExporter.js +286 -73
- package/examples/jsm/exporters/USDZExporter.js +347 -112
- package/examples/jsm/generators/CityGenerator.js +346 -0
- package/examples/jsm/generators/ForestGenerator.js +347 -0
- package/examples/jsm/generators/TerrainGenerator.js +504 -0
- package/examples/jsm/generators/TreeGenerator.js +377 -0
- package/examples/jsm/generators/city/SidewalkGenerator.js +253 -0
- package/examples/jsm/generators/city/SkyscraperGenerator.js +1357 -0
- package/examples/jsm/geometries/LoftGeometry.js +355 -0
- package/examples/jsm/helpers/LightProbeGridHelper.js +1 -1
- package/examples/jsm/helpers/LightProbeHelper.js +5 -4
- package/examples/jsm/helpers/ViewHelper.js +16 -6
- package/examples/jsm/inspector/Inspector.js +53 -15
- package/examples/jsm/inspector/RendererInspector.js +152 -36
- package/examples/jsm/inspector/extensions/tsl-graph/TSLGraphEditor.js +1 -1
- package/examples/jsm/inspector/extensions/tsl-graph/TSLGraphLoader.js +1 -1
- package/examples/jsm/inspector/tabs/Console.js +200 -18
- package/examples/jsm/inspector/tabs/Memory.js +8 -0
- package/examples/jsm/inspector/tabs/Parameters.js +64 -4
- package/examples/jsm/inspector/tabs/Performance.js +21 -6
- package/examples/jsm/inspector/tabs/Settings.js +51 -9
- package/examples/jsm/inspector/tabs/Timeline.js +178 -93
- package/examples/jsm/inspector/tabs/Viewer.js +628 -16
- package/examples/jsm/inspector/ui/Graph.js +162 -25
- package/examples/jsm/inspector/ui/Item.js +92 -13
- package/examples/jsm/inspector/ui/List.js +1 -1
- package/examples/jsm/inspector/ui/Profiler.js +90 -45
- package/examples/jsm/inspector/ui/Style.js +1788 -1401
- package/examples/jsm/inspector/ui/Tab.js +5 -3
- package/examples/jsm/inspector/ui/Values.js +71 -6
- package/examples/jsm/inspector/ui/utils.js +130 -10
- package/examples/jsm/libs/basis/README.md +0 -1
- package/examples/jsm/libs/demuxer_mp4.js +3 -3
- package/examples/jsm/libs/draco/README.md +0 -1
- package/examples/jsm/libs/meshopt_clusterizer.module.js +421 -0
- package/examples/jsm/libs/meshopt_simplifier.module.js +627 -0
- package/examples/jsm/libs/mikktspace.module.js +34 -9
- package/examples/jsm/lighting/ClusteredLighting.js +55 -0
- package/examples/jsm/lighting/LightProbeGrid.js +106 -76
- package/examples/jsm/lines/LineMaterial.js +38 -15
- package/examples/jsm/lines/LineSegments2.js +8 -0
- package/examples/jsm/lines/webgpu/LineSegments2.js +8 -0
- package/examples/jsm/loaders/3DMLoader.js +1 -1
- package/examples/jsm/loaders/DRACOLoader.js +46 -13
- package/examples/jsm/loaders/EXRLoader.js +27 -55
- package/examples/jsm/loaders/HDRLoader.js +6 -28
- package/examples/jsm/loaders/KTX2Loader.js +31 -12
- package/examples/jsm/loaders/LDrawLoader.js +8 -8
- package/examples/jsm/loaders/LUT3dlLoader.js +2 -2
- package/examples/jsm/loaders/LUTCubeLoader.js +2 -2
- package/examples/jsm/loaders/LWOLoader.js +4 -0
- package/examples/jsm/loaders/LottieLoader.js +1 -1
- package/examples/jsm/loaders/MaterialXLoader.js +31 -9
- package/examples/jsm/loaders/NRRDLoader.js +3 -3
- package/examples/jsm/loaders/PCDLoader.js +7 -7
- package/examples/jsm/loaders/PLYLoader.js +218 -55
- package/examples/jsm/loaders/SVGLoader.js +547 -495
- package/examples/jsm/loaders/TTFLoader.js +1 -1
- package/examples/jsm/loaders/USDLoader.js +33 -9
- package/examples/jsm/loaders/VRMLLoader.js +1 -1
- package/examples/jsm/loaders/usd/USDAParser.js +93 -20
- package/examples/jsm/loaders/usd/USDCParser.js +1 -1
- package/examples/jsm/loaders/usd/USDComposer.js +52 -19
- package/examples/jsm/misc/TileCreasedNormalsPlugin.js +270 -0
- package/examples/jsm/misc/Volume.js +2 -2
- package/examples/jsm/objects/GroundedSkybox.js +1 -1
- package/examples/jsm/objects/Reflector.js +2 -3
- package/examples/jsm/objects/Water2Mesh.js +1 -1
- package/examples/jsm/physics/AmmoPhysics.js +15 -8
- package/examples/jsm/physics/RapierPhysics.js +27 -2
- package/examples/jsm/shaders/VolumeShader.js +31 -44
- package/examples/jsm/transpiler/GLSLDecoder.js +6 -6
- package/examples/jsm/transpiler/Linker.js +1 -1
- package/examples/jsm/tsl/display/BloomNode.js +59 -19
- package/examples/jsm/tsl/display/DepthOfFieldNode.js +2 -2
- package/examples/jsm/tsl/display/FXAANode.js +11 -12
- package/examples/jsm/tsl/display/GTAONode.js +34 -13
- package/examples/jsm/tsl/display/GodraysNode.js +1 -1
- package/examples/jsm/tsl/display/ImportanceSampledEnvironment.js +560 -0
- package/examples/jsm/tsl/display/PixelationPassNode.js +2 -2
- package/examples/jsm/tsl/display/RecurrentDenoiseNode.js +912 -0
- package/examples/jsm/tsl/display/SSAAPassNode.js +13 -25
- package/examples/jsm/tsl/display/SSGINode.js +89 -39
- package/examples/jsm/tsl/display/SSRNode.js +829 -132
- package/examples/jsm/tsl/display/SSSNode.js +2 -2
- package/examples/jsm/tsl/display/TemporalReprojectNode.js +1023 -0
- package/examples/jsm/tsl/lighting/ClusteredLightsNode.js +622 -0
- package/examples/jsm/tsl/lighting/DynamicLightsNode.js +1 -1
- package/examples/jsm/tsl/math/curlNoise.js +107 -0
- package/examples/jsm/tsl/shadows/TileShadowNode.js +1 -1
- package/examples/jsm/tsl/shadows/TileShadowNodeHelper.js +3 -3
- package/examples/jsm/tsl/utils/GroundedSkybox.js +62 -0
- package/examples/jsm/tsl/utils/RNoise.js +51 -0
- package/examples/jsm/tsl/utils/SpecularHelpers.js +325 -0
- package/examples/jsm/utils/BufferGeometryUtils.js +126 -59
- package/examples/jsm/utils/GeometryCompressionUtils.js +1 -1
- package/examples/jsm/utils/SceneOptimizer.js +1 -1
- package/examples/jsm/webxr/ARButton.js +1 -1
- package/examples/jsm/webxr/WebGLXRFallback.js +89 -0
- package/examples/jsm/webxr/XRControllerModelFactory.js +2 -2
- package/package.json +7 -7
- package/src/Three.TSL.js +10 -3
- package/src/Three.WebGPU.js +4 -0
- package/src/animation/AnimationAction.js +15 -11
- package/src/animation/AnimationClip.js +0 -139
- package/src/animation/KeyframeTrack.js +2 -2
- package/src/animation/PropertyBinding.js +2 -2
- package/src/cameras/Camera.js +2 -2
- package/src/cameras/StereoCamera.js +5 -2
- package/src/constants.js +1 -1
- package/src/core/BufferGeometry.js +29 -7
- package/src/core/Object3D.js +17 -7
- package/src/core/Raycaster.js +1 -1
- package/src/core/RenderTarget.js +15 -2
- package/src/extras/PMREMGenerator.js +6 -4
- package/src/extras/TextureUtils.js +1 -1
- package/src/extras/core/ShapePath.js +149 -160
- package/src/geometries/SphereGeometry.js +8 -3
- package/src/helpers/DirectionalLightHelper.js +2 -0
- package/src/helpers/HemisphereLightHelper.js +2 -0
- package/src/helpers/PointLightHelper.js +2 -0
- package/src/helpers/SpotLightHelper.js +1 -1
- package/src/loaders/DataTextureLoader.js +69 -38
- package/src/loaders/LoadingManager.js +5 -0
- package/src/loaders/MaterialLoader.js +36 -266
- package/src/loaders/ObjectLoader.js +3 -1
- package/src/materials/LineBasicMaterial.js +4 -0
- package/src/materials/Material.js +196 -1
- package/src/materials/MeshBasicMaterial.js +24 -0
- package/src/materials/MeshDepthMaterial.js +10 -0
- package/src/materials/MeshDistanceMaterial.js +10 -0
- package/src/materials/MeshLambertMaterial.js +40 -1
- package/src/materials/MeshMatcapMaterial.js +25 -1
- package/src/materials/MeshNormalMaterial.js +9 -1
- package/src/materials/MeshPhongMaterial.js +40 -1
- package/src/materials/MeshPhysicalMaterial.js +38 -0
- package/src/materials/MeshStandardMaterial.js +42 -1
- package/src/materials/MeshToonMaterial.js +34 -1
- package/src/materials/PointsMaterial.js +7 -0
- package/src/materials/ShaderMaterial.js +86 -0
- package/src/materials/SpriteMaterial.js +7 -0
- package/src/materials/nodes/Line2NodeMaterial.js +378 -322
- package/src/materials/nodes/MeshBasicNodeMaterial.js +2 -2
- package/src/materials/nodes/MeshNormalNodeMaterial.js +2 -2
- package/src/materials/nodes/MeshPhongNodeMaterial.js +0 -9
- package/src/materials/nodes/MeshPhysicalNodeMaterial.js +0 -30
- package/src/materials/nodes/MeshSSSNodeMaterial.js +0 -13
- package/src/materials/nodes/MeshStandardNodeMaterial.js +0 -11
- package/src/materials/nodes/NodeMaterial.js +115 -71
- package/src/materials/nodes/SpriteNodeMaterial.js +0 -10
- package/src/materials/nodes/manager/NodeMaterialObserver.js +49 -20
- package/src/math/Box3.js +5 -0
- package/src/math/FrustumArray.js +103 -133
- package/src/math/Interpolant.js +1 -1
- package/src/math/MathUtils.js +2 -2
- package/src/math/Matrix3.js +11 -0
- package/src/math/Matrix4.js +28 -3
- package/src/math/Vector2.js +2 -2
- package/src/math/Vector3.js +2 -2
- package/src/math/Vector4.js +2 -2
- package/src/math/interpolants/BezierInterpolant.js +4 -6
- package/src/nodes/Nodes.js +2 -5
- package/src/nodes/TSL.js +8 -6
- package/src/nodes/accessors/Arrays.js +4 -4
- package/src/nodes/accessors/Batch.js +108 -0
- package/src/nodes/accessors/Bitangent.js +2 -2
- package/src/nodes/accessors/BufferAttributeNode.js +13 -2
- package/src/nodes/accessors/Camera.js +7 -7
- package/src/nodes/accessors/ClippingNode.js +1 -1
- package/src/nodes/accessors/Instance.js +264 -0
- package/src/nodes/accessors/MaterialNode.js +18 -2
- package/src/nodes/accessors/MaterialProperties.js +4 -3
- package/src/nodes/accessors/{MorphNode.js → Morph.js} +99 -112
- package/src/nodes/accessors/Normal.js +13 -13
- package/src/nodes/accessors/Position.js +5 -1
- package/src/nodes/accessors/ReferenceNode.js +1 -0
- package/src/nodes/accessors/ReflectVector.js +3 -3
- package/src/nodes/accessors/SceneProperties.js +1 -1
- package/src/nodes/accessors/Skinning.js +263 -0
- package/src/nodes/accessors/StorageBufferNode.js +2 -2
- package/src/nodes/accessors/StorageTexture3DNode.js +100 -0
- package/src/nodes/accessors/StorageTextureNode.js +39 -7
- package/src/nodes/accessors/Tangent.js +4 -4
- package/src/nodes/accessors/TextureNode.js +60 -5
- package/src/nodes/code/FunctionNode.js +2 -16
- package/src/nodes/core/MRTNode.js +7 -2
- package/src/nodes/core/Node.js +39 -2
- package/src/nodes/core/NodeBuilder.js +201 -41
- package/src/nodes/core/NodeUtils.js +13 -13
- package/src/nodes/core/OutputStructNode.js +1 -1
- package/src/nodes/core/OverrideContextNode.js +153 -0
- package/src/nodes/core/PropertyNode.js +51 -5
- package/src/nodes/core/StackNode.js +56 -34
- package/src/nodes/core/StructNode.js +4 -6
- package/src/nodes/core/StructTypeNode.js +6 -6
- package/src/nodes/core/VarNode.js +8 -0
- package/src/nodes/core/VaryingNode.js +12 -2
- package/src/nodes/display/BlendModes.js +1 -41
- package/src/nodes/display/BumpMapNode.js +6 -1
- package/src/nodes/display/ColorAdjustment.js +10 -9
- package/src/nodes/display/FrontFacingNode.js +38 -9
- package/src/nodes/display/NormalMapNode.js +2 -2
- package/src/nodes/display/PassNode.js +35 -43
- package/src/nodes/display/PremultiplyAlphaFunctions.js +39 -0
- package/src/nodes/display/RenderOutputNode.js +12 -3
- package/src/nodes/functions/VolumetricLightingModel.js +40 -7
- package/src/nodes/gpgpu/WorkgroupInfoNode.js +1 -1
- package/src/nodes/lighting/EnvironmentNode.js +2 -2
- package/src/nodes/lighting/IESSpotLightNode.js +40 -2
- package/src/nodes/lighting/LightingContextNode.js +10 -2
- package/src/nodes/lighting/LightsNode.js +90 -37
- package/src/nodes/lighting/PointShadowNode.js +6 -1
- package/src/nodes/lighting/ShadowFilterNode.js +21 -52
- package/src/nodes/lighting/ShadowNode.js +34 -14
- package/src/nodes/materialx/lib/mx_noise.js +2 -2
- package/src/nodes/math/ConditionalNode.js +3 -3
- package/src/nodes/math/MathNode.js +39 -11
- package/src/nodes/math/OperatorNode.js +23 -23
- package/src/nodes/parsers/GLSLNodeFunction.js +1 -1
- package/src/nodes/pmrem/PMREMNode.js +33 -2
- package/src/nodes/tsl/TSLCore.js +63 -18
- package/src/nodes/utils/EquirectUV.js +30 -5
- package/src/nodes/utils/FunctionOverloadingNode.js +1 -1
- package/src/nodes/utils/Packing.js +35 -4
- package/src/nodes/utils/RTTNode.js +40 -24
- package/src/nodes/utils/ReflectorNode.js +1 -0
- package/src/nodes/utils/StorageArrayElementNode.js +1 -1
- package/src/objects/BatchedMesh.js +22 -14
- package/src/objects/InstancedMesh.js +0 -11
- package/src/objects/Skeleton.js +0 -9
- package/src/renderers/WebGLRenderer.js +19 -15
- package/src/renderers/common/Backend.js +49 -5
- package/src/renderers/common/Bindings.js +114 -45
- package/src/renderers/common/Buffer.js +9 -0
- package/src/renderers/common/ClippingContext.js +10 -2
- package/src/renderers/common/Info.js +63 -22
- package/src/renderers/common/Lighting.js +53 -5
- package/src/renderers/common/RenderList.js +41 -4
- package/src/renderers/common/RenderObject.js +73 -13
- package/src/renderers/common/Renderer.js +281 -108
- package/src/renderers/common/Sampler.js +16 -48
- package/src/renderers/common/Textures.js +32 -5
- package/src/renderers/common/TimestampQueryPool.js +1 -1
- package/src/renderers/common/UniformsGroup.js +31 -9
- package/src/renderers/common/XRManager.js +340 -22
- package/src/renderers/common/extras/PMREMGenerator.js +15 -38
- package/src/renderers/common/nodes/NodeBuilderState.js +9 -1
- package/src/renderers/common/nodes/NodeLibrary.js +4 -4
- package/src/renderers/common/nodes/NodeManager.js +63 -14
- package/src/renderers/common/nodes/NodeUniformBuffer.js +13 -0
- package/src/renderers/shaders/ShaderChunk/common.glsl.js +13 -4
- package/src/renderers/shaders/ShaderChunk/defaultnormal_vertex.glsl.js +0 -6
- package/src/renderers/shaders/ShaderChunk/envmap_fragment.glsl.js +1 -1
- package/src/renderers/shaders/ShaderChunk/envmap_physical_pars_fragment.glsl.js +2 -2
- package/src/renderers/shaders/ShaderChunk/envmap_vertex.glsl.js +1 -1
- package/src/renderers/shaders/ShaderChunk/lights_fragment_begin.glsl.js +1 -1
- package/src/renderers/shaders/ShaderChunk/lights_pars_begin.glsl.js +1 -1
- package/src/renderers/shaders/ShaderChunk/normal_fragment_begin.glsl.js +2 -2
- package/src/renderers/shaders/ShaderChunk/normal_vertex.glsl.js +6 -0
- package/src/renderers/shaders/ShaderChunk/shadowmap_vertex.glsl.js +1 -1
- package/src/renderers/shaders/ShaderChunk/transmission_fragment.glsl.js +1 -1
- package/src/renderers/shaders/ShaderLib/distance.glsl.js +1 -1
- package/src/renderers/webgl/WebGLOutput.js +2 -1
- package/src/renderers/webgl/WebGLProgram.js +5 -4
- package/src/renderers/webgl/WebGLPrograms.js +12 -5
- package/src/renderers/webgl/WebGLRenderLists.js +9 -1
- package/src/renderers/webgl/WebGLShaderCache.js +5 -11
- package/src/renderers/webgl/WebGLTextures.js +20 -7
- package/src/renderers/webgl/WebGLUniformsGroups.js +66 -38
- package/src/renderers/webgl-fallback/WebGLBackend.js +84 -25
- package/src/renderers/webgl-fallback/nodes/GLSLNodeBuilder.js +138 -8
- package/src/renderers/webgl-fallback/utils/WebGLAttributeUtils.js +1 -1
- package/src/renderers/webgl-fallback/utils/WebGLTextureUtils.js +52 -22
- package/src/renderers/webgl-fallback/utils/WebGLUtils.js +4 -2
- package/src/renderers/webgpu/WebGPUBackend.js +480 -169
- package/src/renderers/webgpu/descriptors/GPUBindGroupDescriptor.js +48 -0
- package/src/renderers/webgpu/descriptors/GPUBufferDescriptor.js +57 -0
- package/src/renderers/webgpu/descriptors/GPUCommandEncoderDescriptor.js +30 -0
- package/src/renderers/webgpu/descriptors/GPUComputePassDescriptor.js +38 -0
- package/src/renderers/webgpu/descriptors/GPUComputePipelineDescriptor.js +48 -0
- package/src/renderers/webgpu/descriptors/GPUCopyExternalImageDestInfo.js +47 -0
- package/src/renderers/webgpu/descriptors/GPUCopyExternalImageSourceInfo.js +50 -0
- package/src/renderers/webgpu/descriptors/GPUExtent3D.js +51 -0
- package/src/renderers/webgpu/descriptors/GPUPipelineLayoutDescriptor.js +39 -0
- package/src/renderers/webgpu/descriptors/GPUQuerySetDescriptor.js +47 -0
- package/src/renderers/webgpu/descriptors/GPURenderBundleEncoderDescriptor.js +74 -0
- package/src/renderers/webgpu/descriptors/GPURenderPassColorAttachment.js +72 -0
- package/src/renderers/webgpu/descriptors/GPURenderPassDepthStencilAttachment.js +99 -0
- package/src/renderers/webgpu/descriptors/GPURenderPassDescriptor.js +72 -0
- package/src/renderers/webgpu/descriptors/GPURenderPassTimestampWrites.js +49 -0
- package/src/renderers/webgpu/descriptors/GPURenderPipelineDescriptor.js +130 -0
- package/src/renderers/webgpu/descriptors/GPUSamplerDescriptor.js +119 -0
- package/src/renderers/webgpu/descriptors/GPUShaderModuleDescriptor.js +46 -0
- package/src/renderers/webgpu/descriptors/GPUTexelCopyBufferInfo.js +57 -0
- package/src/renderers/webgpu/descriptors/GPUTexelCopyBufferLayout.js +48 -0
- package/src/renderers/webgpu/descriptors/GPUTexelCopyTextureInfo.js +61 -0
- package/src/renderers/webgpu/descriptors/GPUTextureDescriptor.js +99 -0
- package/src/renderers/webgpu/descriptors/GPUTextureViewDescriptor.js +108 -0
- package/src/renderers/webgpu/nodes/StandardNodeLibrary.js +0 -1
- package/src/renderers/webgpu/nodes/WGSLNodeBuilder.js +164 -7
- package/src/renderers/webgpu/nodes/WGSLNodeFunction.js +1 -1
- package/src/renderers/webgpu/utils/WebGPUAttributeUtils.js +98 -38
- package/src/renderers/webgpu/utils/WebGPUBindingUtils.js +72 -68
- package/src/renderers/webgpu/utils/WebGPUPipelineUtils.js +164 -69
- package/src/renderers/webgpu/utils/WebGPUTexturePassUtils.js +158 -95
- package/src/renderers/webgpu/utils/WebGPUTextureUtils.js +297 -141
- package/src/renderers/webgpu/utils/WebGPUTimestampQueryPool.js +33 -18
- package/src/renderers/webgpu/utils/WebGPUUtils.js +38 -3
- package/src/textures/DepthTexture.js +1 -1
- package/src/textures/ExternalTexture.js +0 -3
- package/examples/fonts/LICENSE +0 -13
- package/examples/fonts/MPLUSRounded1c/MPLUSRounded1c-Regular.typeface.json.zip +0 -0
- package/examples/fonts/MPLUSRounded1c/OFL.txt +0 -91
- package/examples/fonts/README.md +0 -11
- package/examples/fonts/droid/NOTICE +0 -190
- package/examples/fonts/droid/README.txt +0 -18
- package/examples/fonts/droid/droid_sans_bold.typeface.json +0 -1
- package/examples/fonts/droid/droid_sans_mono_regular.typeface.json +0 -1
- package/examples/fonts/droid/droid_sans_regular.typeface.json +0 -1
- package/examples/fonts/droid/droid_serif_bold.typeface.json +0 -1
- package/examples/fonts/droid/droid_serif_regular.typeface.json +0 -1
- package/examples/fonts/gentilis_bold.typeface.json +0 -1
- package/examples/fonts/gentilis_regular.typeface.json +0 -1
- package/examples/fonts/helvetiker_bold.typeface.json +0 -1
- package/examples/fonts/helvetiker_regular.typeface.json +0 -1
- package/examples/fonts/optimer_bold.typeface.json +0 -1
- package/examples/fonts/optimer_regular.typeface.json +0 -1
- package/examples/fonts/ttf/README.md +0 -9
- package/examples/fonts/ttf/kenpixel.ttf +0 -0
- package/examples/jsm/inspector/extensions/extensions.json +0 -6
- package/examples/jsm/libs/ammo.wasm.js +0 -822
- package/examples/jsm/libs/ammo.wasm.wasm +0 -0
- package/examples/jsm/libs/draco/draco_encoder.js +0 -33
- package/examples/jsm/libs/draco/gltf/draco_encoder.js +0 -33
- package/examples/jsm/libs/lottie_canvas.module.js +0 -14849
- package/examples/jsm/libs/opentype.module.js +0 -14506
- package/examples/jsm/libs/rhino3dm/rhino3dm.js +0 -21
- package/examples/jsm/libs/rhino3dm/rhino3dm.module.js +0 -16
- package/examples/jsm/libs/rhino3dm/rhino3dm.wasm +0 -0
- package/examples/jsm/lighting/TiledLighting.js +0 -42
- package/examples/jsm/tsl/display/AnamorphicNode.js +0 -293
- package/examples/jsm/tsl/lighting/TiledLightsNode.js +0 -442
- package/src/nodes/accessors/BatchNode.js +0 -163
- package/src/nodes/accessors/InstanceNode.js +0 -349
- package/src/nodes/accessors/InstancedMeshNode.js +0 -50
- package/src/nodes/accessors/SkinningNode.js +0 -328
package/build/three.tsl.js
CHANGED
|
@@ -52,6 +52,7 @@ const addNodeElement = TSL.addNodeElement;
|
|
|
52
52
|
const agxToneMapping = TSL.agxToneMapping;
|
|
53
53
|
const all = TSL.all;
|
|
54
54
|
const alphaT = TSL.alphaT;
|
|
55
|
+
const ambientOcclusion = TSL.ambientOcclusion;
|
|
55
56
|
const and = TSL.and;
|
|
56
57
|
const anisotropy = TSL.anisotropy;
|
|
57
58
|
const anisotropyB = TSL.anisotropyB;
|
|
@@ -59,7 +60,6 @@ const anisotropyT = TSL.anisotropyT;
|
|
|
59
60
|
const any = TSL.any;
|
|
60
61
|
const append = TSL.append;
|
|
61
62
|
const array = TSL.array;
|
|
62
|
-
const arrayBuffer = TSL.arrayBuffer;
|
|
63
63
|
const asin = TSL.asin;
|
|
64
64
|
const asinh = TSL.asinh;
|
|
65
65
|
const assign = TSL.assign;
|
|
@@ -182,6 +182,7 @@ const dynamicBufferAttribute = TSL.dynamicBufferAttribute;
|
|
|
182
182
|
const element = TSL.element;
|
|
183
183
|
const emissive = TSL.emissive;
|
|
184
184
|
const equal = TSL.equal;
|
|
185
|
+
const equirectDirection = TSL.equirectDirection;
|
|
185
186
|
const equirectUV = TSL.equirectUV;
|
|
186
187
|
const exp = TSL.exp;
|
|
187
188
|
const exp2 = TSL.exp2;
|
|
@@ -325,7 +326,6 @@ const min = TSL.min;
|
|
|
325
326
|
const mix = TSL.mix;
|
|
326
327
|
const mixElement = TSL.mixElement;
|
|
327
328
|
const mod = TSL.mod;
|
|
328
|
-
const modInt = TSL.modInt;
|
|
329
329
|
const modelDirection = TSL.modelDirection;
|
|
330
330
|
const modelNormalMatrix = TSL.modelNormalMatrix;
|
|
331
331
|
const modelPosition = TSL.modelPosition;
|
|
@@ -383,6 +383,7 @@ const mx_worley_noise_float = TSL.mx_worley_noise_float;
|
|
|
383
383
|
const mx_worley_noise_vec2 = TSL.mx_worley_noise_vec2;
|
|
384
384
|
const mx_worley_noise_vec3 = TSL.mx_worley_noise_vec3;
|
|
385
385
|
const negate = TSL.negate;
|
|
386
|
+
const negateOnBackSide = TSL.negateOnBackSide;
|
|
386
387
|
const neutralToneMapping = TSL.neutralToneMapping;
|
|
387
388
|
const nodeArray = TSL.nodeArray;
|
|
388
389
|
const nodeImmutable = TSL.nodeImmutable;
|
|
@@ -424,9 +425,12 @@ const oscTriangle = TSL.oscTriangle;
|
|
|
424
425
|
const output = TSL.output;
|
|
425
426
|
const outputStruct = TSL.outputStruct;
|
|
426
427
|
const overloadingFn = TSL.overloadingFn;
|
|
428
|
+
const overrideNode = TSL.overrideNode;
|
|
429
|
+
const overrideNodes = TSL.overrideNodes;
|
|
427
430
|
const packHalf2x16 = TSL.packHalf2x16;
|
|
428
431
|
const packSnorm2x16 = TSL.packSnorm2x16;
|
|
429
432
|
const packUnorm2x16 = TSL.packUnorm2x16;
|
|
433
|
+
const packNormalToRGB = TSL.packNormalToRGB;
|
|
430
434
|
const parabola = TSL.parabola;
|
|
431
435
|
const parallaxDirection = TSL.parallaxDirection;
|
|
432
436
|
const parallaxUV = TSL.parallaxUV;
|
|
@@ -524,7 +528,7 @@ const stepElement = TSL.stepElement;
|
|
|
524
528
|
const storage = TSL.storage;
|
|
525
529
|
const storageBarrier = TSL.storageBarrier;
|
|
526
530
|
const storageTexture = TSL.storageTexture;
|
|
527
|
-
const
|
|
531
|
+
const storageTexture3D = TSL.storageTexture3D;
|
|
528
532
|
const struct = TSL.struct;
|
|
529
533
|
const sub = TSL.sub;
|
|
530
534
|
const subgroupAdd = TSL.subgroupAdd;
|
|
@@ -574,6 +578,8 @@ const toneMappingExposure = TSL.toneMappingExposure;
|
|
|
574
578
|
const toonOutlinePass = TSL.toonOutlinePass;
|
|
575
579
|
const transformDirection = TSL.transformDirection;
|
|
576
580
|
const transformNormal = TSL.transformNormal;
|
|
581
|
+
const transformNormalByInverseViewMatrix = TSL.transformNormalByInverseViewMatrix;
|
|
582
|
+
const transformNormalByViewMatrix = TSL.transformNormalByViewMatrix;
|
|
577
583
|
const transformNormalToView = TSL.transformNormalToView;
|
|
578
584
|
const transformedClearcoatNormalView = TSL.transformedClearcoatNormalView;
|
|
579
585
|
const transformedNormalView = TSL.transformedNormalView;
|
|
@@ -595,6 +601,7 @@ const uniformTexture = TSL.uniformTexture;
|
|
|
595
601
|
const unpackHalf2x16 = TSL.unpackHalf2x16;
|
|
596
602
|
const unpackSnorm2x16 = TSL.unpackSnorm2x16;
|
|
597
603
|
const unpackUnorm2x16 = TSL.unpackUnorm2x16;
|
|
604
|
+
const unpackRGBToNormal = TSL.unpackRGBToNormal;
|
|
598
605
|
const unpremultiplyAlpha = TSL.unpremultiplyAlpha;
|
|
599
606
|
const userData = TSL.userData;
|
|
600
607
|
const uv = TSL.uv;
|
|
@@ -651,4 +658,4 @@ for ( const key of Object.keys( THREE.TSL ) ) {
|
|
|
651
658
|
log( code );
|
|
652
659
|
//*/
|
|
653
660
|
|
|
654
|
-
export { BRDF_GGX, BRDF_Lambert, BasicPointShadowFilter, BasicShadowFilter, Break, Const, Continue, DFGLUT, D_GGX, Discard, EPSILON, F_Schlick, Fn, HALF_PI, INFINITY, If, Loop, NodeAccess, NodeShaderStage, NodeType, NodeUpdateType, OnBeforeMaterialUpdate, OnBeforeObjectUpdate, OnMaterialUpdate, OnObjectUpdate, PCFShadowFilter, PCFSoftShadowFilter, PI, PI2, PointShadowFilter, Return, Schlick_to_F0, ShaderNode, Stack, Switch, TBNViewMatrix, TWO_PI, VSMShadowFilter, V_GGX_SmithCorrelated, Var, VarIntent, abs, acesFilmicToneMapping, acos, acosh, add, addMethodChaining, addNodeElement, agxToneMapping, all, alphaT, and, anisotropy, anisotropyB, anisotropyT, any, append, array,
|
|
661
|
+
export { BRDF_GGX, BRDF_Lambert, BasicPointShadowFilter, BasicShadowFilter, Break, Const, Continue, DFGLUT, D_GGX, Discard, EPSILON, F_Schlick, Fn, HALF_PI, INFINITY, If, Loop, NodeAccess, NodeShaderStage, NodeType, NodeUpdateType, OnBeforeMaterialUpdate, OnBeforeObjectUpdate, OnMaterialUpdate, OnObjectUpdate, PCFShadowFilter, PCFSoftShadowFilter, PI, PI2, PointShadowFilter, Return, Schlick_to_F0, ShaderNode, Stack, Switch, TBNViewMatrix, TWO_PI, VSMShadowFilter, V_GGX_SmithCorrelated, Var, VarIntent, abs, acesFilmicToneMapping, acos, acosh, add, addMethodChaining, addNodeElement, agxToneMapping, all, alphaT, ambientOcclusion, and, anisotropy, anisotropyB, anisotropyT, any, append, array, asin, asinh, assign, atan, atanh, atomicAdd, atomicAnd, atomicFunc, atomicLoad, atomicMax, atomicMin, atomicOr, atomicStore, atomicSub, atomicXor, attenuationColor, attenuationDistance, attribute, attributeArray, backgroundBlurriness, backgroundIntensity, backgroundRotation, batch, bentNormalView, billboarding, bitAnd, bitNot, bitOr, bitXor, bitangentGeometry, bitangentLocal, bitangentView, bitangentWorld, bitcast, blendBurn, blendColor, blendDodge, blendOverlay, blendScreen, blur, bool, buffer, bufferAttribute, builtin, builtinAOContext, builtinShadowContext, bumpMap, bvec2, bvec3, bvec4, bypass, cache, call, cameraFar, cameraIndex, cameraNear, cameraNormalMatrix, cameraPosition, cameraProjectionMatrix, cameraProjectionMatrixInverse, cameraViewMatrix, cameraViewport, cameraWorldMatrix, cbrt, cdl, ceil, checker, cineonToneMapping, clamp, clearcoat, clearcoatNormalView, clearcoatRoughness, clipSpace, code, color, colorSpaceToWorking, colorToDirection, compute, computeKernel, computeSkinning, context, convert, convertColorSpace, convertToTexture, cos, cosh, countLeadingZeros, countOneBits, countTrailingZeros, cross, cubeTexture, cubeTextureBase, dFdx, dFdy, dashSize, debug, decrement, decrementBefore, defaultBuildStages, defaultShaderStages, defined, degrees, deltaTime, densityFog, densityFogFactor, depth, depthPass, determinant, difference, diffuseColor, directPointLight, directionToColor, directionToFaceDirection, dispersion, distance, div, dot, drawIndex, dynamicBufferAttribute, element, emissive, equal, equirectDirection, equirectUV, exp, exp2, exponentialHeightFogFactor, expression, faceDirection, faceForward, faceforward, float, floatBitsToInt, floatBitsToUint, floor, fog, fract, frameGroup, frameId, frontFacing, fwidth, gain, gapSize, getConstNodeType, getCurrentStack, getDirection, getDistanceAttenuation, getGeometryRoughness, getNormalFromDepth, getParallaxCorrectNormal, getRoughness, getScreenPosition, getShIrradianceAt, getShadowMaterial, getShadowRenderObjectFunction, getTextureIndex, getViewPosition, globalId, glsl, glslFn, grayscale, greaterThan, greaterThanEqual, hash, highpModelNormalViewMatrix, highpModelViewMatrix, hue, increment, incrementBefore, instance, instanceIndex, instancedArray, instancedBufferAttribute, instancedDynamicBufferAttribute, instancedMesh, int, intBitsToFloat, interleavedGradientNoise, inverse, inverseSqrt, inversesqrt, invocationLocalIndex, invocationSubgroupIndex, ior, iridescence, iridescenceIOR, iridescenceThickness, ivec2, ivec3, ivec4, js, label, length, lengthSq, lessThan, lessThanEqual, lightPosition, lightProjectionUV, lightShadowMatrix, lightTargetDirection, lightTargetPosition, lightViewPosition, lightingContext, lights, linearDepth, linearToneMapping, localId, log, log2, logarithmicDepthToViewZ, luminance, mat2, mat3, mat4, matcapUV, materialAO, materialAlphaTest, materialAnisotropy, materialAnisotropyVector, materialAttenuationColor, materialAttenuationDistance, materialClearcoat, materialClearcoatNormal, materialClearcoatRoughness, materialColor, materialDispersion, materialEmissive, materialEnvIntensity, materialEnvRotation, materialIOR, materialIridescence, materialIridescenceIOR, materialIridescenceThickness, materialLightMap, materialLineDashOffset, materialLineDashSize, materialLineGapSize, materialLineScale, materialLineWidth, materialMetalness, materialNormal, materialOpacity, materialPointSize, materialReference, materialReflectivity, materialRefractionRatio, materialRotation, materialRoughness, materialSheen, materialSheenRoughness, materialShininess, materialSpecular, materialSpecularColor, materialSpecularIntensity, materialSpecularStrength, materialThickness, materialTransmission, max, maxMipLevel, mediumpModelViewMatrix, metalness, min, mix, mixElement, mod, modelDirection, modelNormalMatrix, modelPosition, modelRadius, modelScale, modelViewMatrix, modelViewPosition, modelViewProjection, modelWorldMatrix, modelWorldMatrixInverse, morphReference, mrt, mul, mx_aastep, mx_add, mx_atan2, mx_cell_noise_float, mx_contrast, mx_divide, mx_fractal_noise_float, mx_fractal_noise_vec2, mx_fractal_noise_vec3, mx_fractal_noise_vec4, mx_frame, mx_heighttonormal, mx_hsvtorgb, mx_ifequal, mx_ifgreater, mx_ifgreatereq, mx_invert, mx_modulo, mx_multiply, mx_noise_float, mx_noise_vec3, mx_noise_vec4, mx_place2d, mx_power, mx_ramp4, mx_ramplr, mx_ramptb, mx_rgbtohsv, mx_rotate2d, mx_rotate3d, mx_safepower, mx_separate, mx_splitlr, mx_splittb, mx_srgb_texture_to_lin_rec709, mx_subtract, mx_timer, mx_transform_uv, mx_unifiednoise2d, mx_unifiednoise3d, mx_worley_noise_float, mx_worley_noise_vec2, mx_worley_noise_vec3, negate, negateOnBackSide, neutralToneMapping, nodeArray, nodeImmutable, nodeObject, nodeObjectIntent, nodeObjects, nodeProxy, nodeProxyIntent, normalFlat, normalGeometry, normalLocal, normalMap, normalView, normalViewGeometry, normalWorld, normalWorldGeometry, normalize, not, notEqual, numWorkgroups, objectDirection, objectGroup, objectPosition, objectRadius, objectScale, objectViewPosition, objectWorldMatrix, oneMinus, or, orthographicDepthToViewZ, oscSawtooth, oscSine, oscSquare, oscTriangle, output, outputStruct, overloadingFn, overrideNode, overrideNodes, packHalf2x16, packNormalToRGB, packSnorm2x16, packUnorm2x16, parabola, parallaxDirection, parallaxUV, parameter, pass, passTexture, pcurve, perspectiveDepthToViewZ, pmremTexture, pointShadow, pointUV, pointWidth, positionGeometry, positionLocal, positionPrevious, positionView, positionViewDirection, positionWorld, positionWorldDirection, posterize, pow, pow2, pow3, pow4, premultiplyAlpha, property, radians, rand, range, rangeFog, rangeFogFactor, reciprocal, reference, referenceBuffer, reflect, reflectVector, reflectView, reflector, refract, refractVector, refractView, reinhardToneMapping, remap, remapClamp, renderGroup, renderOutput, rendererReference, replaceDefaultUV, rotate, rotateUV, roughness, round, rtt, sRGBTransferEOTF, sRGBTransferOETF, sample, sampler, samplerComparison, saturate, saturation, screen, screenCoordinate, screenDPR, screenSize, screenUV, select, setCurrentStack, setName, shaderStages, shadow, shadowPositionWorld, shapeCircle, sharedUniformGroup, sheen, sheenRoughness, shiftLeft, shiftRight, shininess, sign, sin, sinc, sinh, skinning, smoothstep, smoothstepElement, specularColor, specularF90, spherizeUV, split, spritesheetUV, sqrt, stack, step, stepElement, storage, storageBarrier, storageTexture, storageTexture3D, struct, sub, subBuild, subgroupAdd, subgroupAll, subgroupAnd, subgroupAny, subgroupBallot, subgroupBroadcast, subgroupBroadcastFirst, subgroupElect, subgroupExclusiveAdd, subgroupExclusiveMul, subgroupInclusiveAdd, subgroupInclusiveMul, subgroupIndex, subgroupMax, subgroupMin, subgroupMul, subgroupOr, subgroupShuffle, subgroupShuffleDown, subgroupShuffleUp, subgroupShuffleXor, subgroupSize, subgroupXor, tan, tangentGeometry, tangentLocal, tangentView, tangentWorld, tanh, texture, texture3D, textureBarrier, textureBicubic, textureBicubicLevel, textureCubeUV, textureLevel, textureLoad, textureSize, textureStore, thickness, time, toneMapping, toneMappingExposure, toonOutlinePass, transformDirection, transformNormal, transformNormalByInverseViewMatrix, transformNormalByViewMatrix, transformNormalToView, transformedClearcoatNormalView, transformedNormalView, transformedNormalWorld, transmission, transpose, triNoise3D, triplanarTexture, triplanarTextures, trunc, uint, uintBitsToFloat, uniform, uniformArray, uniformCubeTexture, uniformFlow, uniformGroup, uniformTexture, unpackHalf2x16, unpackRGBToNormal, unpackSnorm2x16, unpackUnorm2x16, unpremultiplyAlpha, userData, uv, uvec2, uvec3, uvec4, varying, varyingProperty, vec2, vec3, vec4, vectorComponents, velocity, vertexColor, vertexIndex, vertexStage, vibrance, viewZToLogarithmicDepth, viewZToOrthographicDepth, viewZToPerspectiveDepth, viewZToReversedOrthographicDepth, viewZToReversedPerspectiveDepth, viewport, viewportCoordinate, viewportDepthTexture, viewportLinearDepth, viewportMipTexture, viewportOpaqueMipTexture, viewportResolution, viewportSafeUV, viewportSharedTexture, viewportSize, viewportTexture, viewportUV, vogelDiskSample, wgsl, wgslFn, workgroupArray, workgroupBarrier, workgroupId, workingToColorSpace, xor };
|
package/build/three.tsl.min.js
CHANGED
|
@@ -3,4 +3,4 @@
|
|
|
3
3
|
* Copyright 2010-2026 Three.js Authors
|
|
4
4
|
* SPDX-License-Identifier: MIT
|
|
5
5
|
*/
|
|
6
|
-
import{TSL as e}from"three/webgpu";const t=e.BRDF_GGX,r=e.BRDF_Lambert,a=e.BasicPointShadowFilter,o=e.BasicShadowFilter,i=e.Break,n=e.Const,l=e.Continue,s=e.DFGLUT,c=e.D_GGX,m=e.Discard,u=e.EPSILON,p=e.F_Schlick,d=e.Fn,g=e.INFINITY,h=e.If,x=e.Loop,f=e.NodeAccess,b=e.NodeShaderStage,v=e.NodeType,w=e.NodeUpdateType,_=e.PCFShadowFilter,S=e.PCFSoftShadowFilter,T=e.PI,y=e.PI2,V=e.TWO_PI,M=e.HALF_PI,F=e.PointShadowFilter,D=e.Return,I=e.Schlick_to_F0,B=e.ShaderNode,C=e.Stack,P=e.Switch,R=e.TBNViewMatrix,A=e.VSMShadowFilter,O=e.V_GGX_SmithCorrelated,k=e.Var,N=e.VarIntent,L=e.abs,U=e.acesFilmicToneMapping,G=e.acos,j=e.acosh,E=e.add,W=e.addMethodChaining,q=e.addNodeElement,z=e.agxToneMapping,Z=e.all,X=e.alphaT,H=e.and,K=e.anisotropy,Y=e.anisotropyB,J=e.anisotropyT,Q=e.any,$=e.append,ee=e.array,te=e.arrayBuffer,re=e.asin,ae=e.asinh,oe=e.assign,ie=e.atan,ne=e.atanh,le=e.atomicAdd,se=e.atomicAnd,ce=e.atomicFunc,me=e.atomicLoad,ue=e.atomicMax,pe=e.atomicMin,de=e.atomicOr,ge=e.atomicStore,he=e.atomicSub,xe=e.atomicXor,fe=e.attenuationColor,be=e.attenuationDistance,ve=e.attribute,we=e.attributeArray,_e=e.backgroundBlurriness,Se=e.backgroundIntensity,Te=e.backgroundRotation,ye=e.batch,Ve=e.bentNormalView,Me=e.billboarding,Fe=e.bitAnd,De=e.bitNot,Ie=e.bitOr,Be=e.bitXor,Ce=e.bitangentGeometry,Pe=e.bitangentLocal,Re=e.bitangentView,Ae=e.bitangentWorld,Oe=e.bitcast,ke=e.blendBurn,Ne=e.blendColor,Le=e.blendDodge,Ue=e.blendOverlay,Ge=e.blendScreen,je=e.blur,Ee=e.bool,We=e.buffer,qe=e.bufferAttribute,ze=e.bumpMap,Ze=e.builtin,Xe=e.builtinAOContext,He=e.builtinShadowContext,Ke=e.bvec2,Ye=e.bvec3,Je=e.bvec4,Qe=e.bypass,$e=e.cache,et=e.call,tt=e.cameraFar,rt=e.cameraIndex,at=e.cameraNear,ot=e.cameraNormalMatrix,it=e.cameraPosition,nt=e.cameraProjectionMatrix,lt=e.cameraProjectionMatrixInverse,st=e.cameraViewMatrix,ct=e.cameraViewport,mt=e.cameraWorldMatrix,ut=e.cbrt,pt=e.cdl,dt=e.ceil,gt=e.checker,ht=e.cineonToneMapping,xt=e.clamp,ft=e.clearcoat,bt=e.clearcoatNormalView,vt=e.clearcoatRoughness,wt=e.clipSpace,_t=e.code,St=e.color,Tt=e.colorSpaceToWorking,yt=e.colorToDirection,Vt=e.compute,Mt=e.computeKernel,Ft=e.computeSkinning,Dt=e.context,It=e.convert,Bt=e.convertColorSpace,Ct=e.convertToTexture,Pt=e.countLeadingZeros,Rt=e.countOneBits,At=e.countTrailingZeros,Ot=e.cos,kt=e.cosh,Nt=e.cross,Lt=e.cubeTexture,Ut=e.cubeTextureBase,Gt=e.dFdx,jt=e.dFdy,Et=e.dashSize,Wt=e.debug,qt=e.decrement,zt=e.decrementBefore,Zt=e.defaultBuildStages,Xt=e.defaultShaderStages,Ht=e.defined,Kt=e.degrees,Yt=e.deltaTime,Jt=e.densityFog,Qt=e.densityFogFactor,$t=e.depth,er=e.depthPass,tr=e.determinant,rr=e.difference,ar=e.diffuseColor,or=e.directPointLight,ir=e.directionToColor,nr=e.directionToFaceDirection,lr=e.dispersion,sr=e.distance,cr=e.div,mr=e.dot,ur=e.drawIndex,pr=e.dynamicBufferAttribute,dr=e.element,gr=e.emissive,hr=e.equal,xr=e.equirectUV,fr=e.exp,br=e.exp2,vr=e.exponentialHeightFogFactor,wr=e.expression,_r=e.faceDirection,Sr=e.faceForward,Tr=e.faceforward,yr=e.float,Vr=e.floatBitsToInt,Mr=e.floatBitsToUint,Fr=e.floor,Dr=e.fog,Ir=e.fract,Br=e.frameGroup,Cr=e.frameId,Pr=e.frontFacing,Rr=e.fwidth,Ar=e.gain,Or=e.gapSize,kr=e.getConstNodeType,Nr=e.getCurrentStack,Lr=e.getDirection,Ur=e.getDistanceAttenuation,Gr=e.getGeometryRoughness,jr=e.getNormalFromDepth,Er=e.interleavedGradientNoise,Wr=e.vogelDiskSample,qr=e.getParallaxCorrectNormal,zr=e.getRoughness,Zr=e.getScreenPosition,Xr=e.getShIrradianceAt,Hr=e.getShadowMaterial,Kr=e.getShadowRenderObjectFunction,Yr=e.getTextureIndex,Jr=e.getViewPosition,Qr=e.globalId,$r=e.glsl,ea=e.glslFn,ta=e.grayscale,ra=e.greaterThan,aa=e.greaterThanEqual,oa=e.hash,ia=e.highpModelNormalViewMatrix,na=e.highpModelViewMatrix,la=e.hue,sa=e.increment,ca=e.incrementBefore,ma=e.instance,ua=e.instanceIndex,pa=e.instancedArray,da=e.instancedBufferAttribute,ga=e.instancedDynamicBufferAttribute,ha=e.instancedMesh,xa=e.int,fa=e.intBitsToFloat,ba=e.inverse,va=e.inverseSqrt,wa=e.inversesqrt,_a=e.invocationLocalIndex,Sa=e.invocationSubgroupIndex,Ta=e.ior,ya=e.iridescence,Va=e.iridescenceIOR,Ma=e.iridescenceThickness,Fa=e.ivec2,Da=e.ivec3,Ia=e.ivec4,Ba=e.js,Ca=e.label,Pa=e.length,Ra=e.lengthSq,Aa=e.lessThan,Oa=e.lessThanEqual,ka=e.lightPosition,Na=e.lightProjectionUV,La=e.lightShadowMatrix,Ua=e.lightTargetDirection,Ga=e.lightTargetPosition,ja=e.lightViewPosition,Ea=e.lightingContext,Wa=e.lights,qa=e.linearDepth,za=e.linearToneMapping,Za=e.localId,Xa=e.log,Ha=e.log2,Ka=e.logarithmicDepthToViewZ,Ya=e.luminance,Ja=e.mat2,Qa=e.mat3,$a=e.mat4,eo=e.matcapUV,to=e.materialAO,ro=e.materialAlphaTest,ao=e.materialAnisotropy,oo=e.materialAnisotropyVector,io=e.materialAttenuationColor,no=e.materialAttenuationDistance,lo=e.materialClearcoat,so=e.materialClearcoatNormal,co=e.materialClearcoatRoughness,mo=e.materialColor,uo=e.materialDispersion,po=e.materialEmissive,go=e.materialEnvIntensity,ho=e.materialEnvRotation,xo=e.materialIOR,fo=e.materialIridescence,bo=e.materialIridescenceIOR,vo=e.materialIridescenceThickness,wo=e.materialLightMap,_o=e.materialLineDashOffset,So=e.materialLineDashSize,To=e.materialLineGapSize,yo=e.materialLineScale,Vo=e.materialLineWidth,Mo=e.materialMetalness,Fo=e.materialNormal,Do=e.materialOpacity,Io=e.materialPointSize,Bo=e.materialReference,Co=e.materialReflectivity,Po=e.materialRefractionRatio,Ro=e.materialRotation,Ao=e.materialRoughness,Oo=e.materialSheen,ko=e.materialSheenRoughness,No=e.materialShininess,Lo=e.materialSpecular,Uo=e.materialSpecularColor,Go=e.materialSpecularIntensity,jo=e.materialSpecularStrength,Eo=e.materialThickness,Wo=e.materialTransmission,qo=e.max,zo=e.maxMipLevel,Zo=e.mediumpModelViewMatrix,Xo=e.metalness,Ho=e.min,Ko=e.mix,Yo=e.mixElement,Jo=e.mod,Qo=e.modInt,$o=e.modelDirection,ei=e.modelNormalMatrix,ti=e.modelPosition,ri=e.modelRadius,ai=e.modelScale,oi=e.modelViewMatrix,ii=e.modelViewPosition,ni=e.modelViewProjection,li=e.modelWorldMatrix,si=e.modelWorldMatrixInverse,ci=e.morphReference,mi=e.mrt,ui=e.mul,pi=e.mx_aastep,di=e.mx_add,gi=e.mx_atan2,hi=e.mx_cell_noise_float,xi=e.mx_contrast,fi=e.mx_divide,bi=e.mx_fractal_noise_float,vi=e.mx_fractal_noise_vec2,wi=e.mx_fractal_noise_vec3,_i=e.mx_fractal_noise_vec4,Si=e.mx_frame,Ti=e.mx_heighttonormal,yi=e.mx_hsvtorgb,Vi=e.mx_ifequal,Mi=e.mx_ifgreater,Fi=e.mx_ifgreatereq,Di=e.mx_invert,Ii=e.mx_modulo,Bi=e.mx_multiply,Ci=e.mx_noise_float,Pi=e.mx_noise_vec3,Ri=e.mx_noise_vec4,Ai=e.mx_place2d,Oi=e.mx_power,ki=e.mx_ramp4,Ni=e.mx_ramplr,Li=e.mx_ramptb,Ui=e.mx_rgbtohsv,Gi=e.mx_rotate2d,ji=e.mx_rotate3d,Ei=e.mx_safepower,Wi=e.mx_separate,qi=e.mx_splitlr,zi=e.mx_splittb,Zi=e.mx_srgb_texture_to_lin_rec709,Xi=e.mx_subtract,Hi=e.mx_timer,Ki=e.mx_transform_uv,Yi=e.mx_unifiednoise2d,Ji=e.mx_unifiednoise3d,Qi=e.mx_worley_noise_float,$i=e.mx_worley_noise_vec2,en=e.mx_worley_noise_vec3,tn=e.negate,rn=e.neutralToneMapping,an=e.nodeArray,on=e.nodeImmutable,nn=e.nodeObject,ln=e.nodeObjectIntent,sn=e.nodeObjects,cn=e.nodeProxy,mn=e.nodeProxyIntent,un=e.normalFlat,pn=e.normalGeometry,dn=e.normalLocal,gn=e.normalMap,hn=e.normalView,xn=e.normalViewGeometry,fn=e.normalWorld,bn=e.normalWorldGeometry,vn=e.normalize,wn=e.not,_n=e.notEqual,Sn=e.numWorkgroups,Tn=e.objectDirection,yn=e.objectGroup,Vn=e.objectPosition,Mn=e.objectRadius,Fn=e.objectScale,Dn=e.objectViewPosition,In=e.objectWorldMatrix,Bn=e.OnBeforeObjectUpdate,Cn=e.OnBeforeMaterialUpdate,Pn=e.OnObjectUpdate,Rn=e.OnMaterialUpdate,An=e.oneMinus,On=e.or,kn=e.orthographicDepthToViewZ,Nn=e.oscSawtooth,Ln=e.oscSine,Un=e.oscSquare,Gn=e.oscTriangle,jn=e.output,En=e.outputStruct,Wn=e.overloadingFn,qn=e.packHalf2x16,zn=e.packSnorm2x16,Zn=e.packUnorm2x16,Xn=e.parabola,Hn=e.parallaxDirection,Kn=e.parallaxUV,Yn=e.parameter,Jn=e.pass,Qn=e.passTexture,$n=e.pcurve,el=e.perspectiveDepthToViewZ,tl=e.pmremTexture,rl=e.pointShadow,al=e.pointUV,ol=e.pointWidth,il=e.positionGeometry,nl=e.positionLocal,ll=e.positionPrevious,sl=e.positionView,cl=e.positionViewDirection,ml=e.positionWorld,ul=e.positionWorldDirection,pl=e.posterize,dl=e.pow,gl=e.pow2,hl=e.pow3,xl=e.pow4,fl=e.premultiplyAlpha,bl=e.property,vl=e.radians,wl=e.rand,_l=e.range,Sl=e.rangeFog,Tl=e.rangeFogFactor,yl=e.reciprocal,Vl=e.reference,Ml=e.referenceBuffer,Fl=e.reflect,Dl=e.reflectVector,Il=e.reflectView,Bl=e.reflector,Cl=e.refract,Pl=e.refractVector,Rl=e.refractView,Al=e.reinhardToneMapping,Ol=e.remap,kl=e.remapClamp,Nl=e.renderGroup,Ll=e.renderOutput,Ul=e.rendererReference,Gl=e.replaceDefaultUV,jl=e.rotate,El=e.rotateUV,Wl=e.roughness,ql=e.round,zl=e.rtt,Zl=e.sRGBTransferEOTF,Xl=e.sRGBTransferOETF,Hl=e.sample,Kl=e.sampler,Yl=e.samplerComparison,Jl=e.saturate,Ql=e.saturation,$l=e.screen,es=e.screenCoordinate,ts=e.screenDPR,rs=e.screenSize,as=e.screenUV,os=e.select,is=e.setCurrentStack,ns=e.setName,ls=e.shaderStages,ss=e.shadow,cs=e.shadowPositionWorld,ms=e.shapeCircle,us=e.sharedUniformGroup,ps=e.sheen,ds=e.sheenRoughness,gs=e.shiftLeft,hs=e.shiftRight,xs=e.shininess,fs=e.sign,bs=e.sin,vs=e.sinh,ws=e.sinc,_s=e.skinning,Ss=e.smoothstep,Ts=e.smoothstepElement,ys=e.specularColor,Vs=e.specularF90,Ms=e.spherizeUV,Fs=e.split,Ds=e.spritesheetUV,Is=e.sqrt,Bs=e.stack,Cs=e.step,Ps=e.stepElement,Rs=e.storage,As=e.storageBarrier,Os=e.storageTexture,ks=e.string,Ns=e.struct,Ls=e.sub,Us=e.subgroupAdd,Gs=e.subgroupAll,js=e.subgroupAnd,Es=e.subgroupAny,Ws=e.subgroupBallot,qs=e.subgroupBroadcast,zs=e.subgroupBroadcastFirst,Zs=e.subBuild,Xs=e.subgroupElect,Hs=e.subgroupExclusiveAdd,Ks=e.subgroupExclusiveMul,Ys=e.subgroupInclusiveAdd,Js=e.subgroupInclusiveMul,Qs=e.subgroupIndex,$s=e.subgroupMax,ec=e.subgroupMin,tc=e.subgroupMul,rc=e.subgroupOr,ac=e.subgroupShuffle,oc=e.subgroupShuffleDown,ic=e.subgroupShuffleUp,nc=e.subgroupShuffleXor,lc=e.subgroupSize,sc=e.subgroupXor,cc=e.tan,mc=e.tanh,uc=e.tangentGeometry,pc=e.tangentLocal,dc=e.tangentView,gc=e.tangentWorld,hc=e.texture,xc=e.texture3D,fc=e.textureBarrier,bc=e.textureBicubic,vc=e.textureBicubicLevel,wc=e.textureCubeUV,_c=e.textureLoad,Sc=e.textureSize,Tc=e.textureLevel,yc=e.textureStore,Vc=e.thickness,Mc=e.time,Fc=e.toneMapping,Dc=e.toneMappingExposure,Ic=e.toonOutlinePass,Bc=e.transformDirection,Cc=e.transformNormal,Pc=e.transformNormalToView,Rc=e.transformedClearcoatNormalView,Ac=e.transformedNormalView,Oc=e.transformedNormalWorld,kc=e.transmission,Nc=e.transpose,Lc=e.triNoise3D,Uc=e.triplanarTexture,Gc=e.triplanarTextures,jc=e.trunc,Ec=e.uint,Wc=e.uintBitsToFloat,qc=e.uniform,zc=e.uniformArray,Zc=e.uniformCubeTexture,Xc=e.uniformGroup,Hc=e.uniformFlow,Kc=e.uniformTexture,Yc=e.unpackHalf2x16,Jc=e.unpackSnorm2x16,Qc=e.unpackUnorm2x16,$c=e.unpremultiplyAlpha,em=e.userData,tm=e.uv,rm=e.uvec2,am=e.uvec3,om=e.uvec4,im=e.varying,nm=e.varyingProperty,lm=e.vec2,sm=e.vec3,cm=e.vec4,mm=e.vectorComponents,um=e.velocity,pm=e.vertexColor,dm=e.vertexIndex,gm=e.vertexStage,hm=e.vibrance,xm=e.viewZToLogarithmicDepth,fm=e.viewZToOrthographicDepth,bm=e.viewZToPerspectiveDepth,vm=e.viewZToReversedOrthographicDepth,wm=e.viewZToReversedPerspectiveDepth,_m=e.viewport,Sm=e.viewportCoordinate,Tm=e.viewportDepthTexture,ym=e.viewportLinearDepth,Vm=e.viewportMipTexture,Mm=e.viewportOpaqueMipTexture,Fm=e.viewportResolution,Dm=e.viewportSafeUV,Im=e.viewportSharedTexture,Bm=e.viewportSize,Cm=e.viewportTexture,Pm=e.viewportUV,Rm=e.wgsl,Am=e.wgslFn,Om=e.workgroupArray,km=e.workgroupBarrier,Nm=e.workgroupId,Lm=e.workingToColorSpace,Um=e.xor;export{t as BRDF_GGX,r as BRDF_Lambert,a as BasicPointShadowFilter,o as BasicShadowFilter,i as Break,n as Const,l as Continue,s as DFGLUT,c as D_GGX,m as Discard,u as EPSILON,p as F_Schlick,d as Fn,M as HALF_PI,g as INFINITY,h as If,x as Loop,f as NodeAccess,b as NodeShaderStage,v as NodeType,w as NodeUpdateType,Cn as OnBeforeMaterialUpdate,Bn as OnBeforeObjectUpdate,Rn as OnMaterialUpdate,Pn as OnObjectUpdate,_ as PCFShadowFilter,S as PCFSoftShadowFilter,T as PI,y as PI2,F as PointShadowFilter,D as Return,I as Schlick_to_F0,B as ShaderNode,C as Stack,P as Switch,R as TBNViewMatrix,V as TWO_PI,A as VSMShadowFilter,O as V_GGX_SmithCorrelated,k as Var,N as VarIntent,L as abs,U as acesFilmicToneMapping,G as acos,j as acosh,E as add,W as addMethodChaining,q as addNodeElement,z as agxToneMapping,Z as all,X as alphaT,H as and,K as anisotropy,Y as anisotropyB,J as anisotropyT,Q as any,$ as append,ee as array,te as arrayBuffer,re as asin,ae as asinh,oe as assign,ie as atan,ne as atanh,le as atomicAdd,se as atomicAnd,ce as atomicFunc,me as atomicLoad,ue as atomicMax,pe as atomicMin,de as atomicOr,ge as atomicStore,he as atomicSub,xe as atomicXor,fe as attenuationColor,be as attenuationDistance,ve as attribute,we as attributeArray,_e as backgroundBlurriness,Se as backgroundIntensity,Te as backgroundRotation,ye as batch,Ve as bentNormalView,Me as billboarding,Fe as bitAnd,De as bitNot,Ie as bitOr,Be as bitXor,Ce as bitangentGeometry,Pe as bitangentLocal,Re as bitangentView,Ae as bitangentWorld,Oe as bitcast,ke as blendBurn,Ne as blendColor,Le as blendDodge,Ue as blendOverlay,Ge as blendScreen,je as blur,Ee as bool,We as buffer,qe as bufferAttribute,Ze as builtin,Xe as builtinAOContext,He as builtinShadowContext,ze as bumpMap,Ke as bvec2,Ye as bvec3,Je as bvec4,Qe as bypass,$e as cache,et as call,tt as cameraFar,rt as cameraIndex,at as cameraNear,ot as cameraNormalMatrix,it as cameraPosition,nt as cameraProjectionMatrix,lt as cameraProjectionMatrixInverse,st as cameraViewMatrix,ct as cameraViewport,mt as cameraWorldMatrix,ut as cbrt,pt as cdl,dt as ceil,gt as checker,ht as cineonToneMapping,xt as clamp,ft as clearcoat,bt as clearcoatNormalView,vt as clearcoatRoughness,wt as clipSpace,_t as code,St as color,Tt as colorSpaceToWorking,yt as colorToDirection,Vt as compute,Mt as computeKernel,Ft as computeSkinning,Dt as context,It as convert,Bt as convertColorSpace,Ct as convertToTexture,Ot as cos,kt as cosh,Pt as countLeadingZeros,Rt as countOneBits,At as countTrailingZeros,Nt as cross,Lt as cubeTexture,Ut as cubeTextureBase,Gt as dFdx,jt as dFdy,Et as dashSize,Wt as debug,qt as decrement,zt as decrementBefore,Zt as defaultBuildStages,Xt as defaultShaderStages,Ht as defined,Kt as degrees,Yt as deltaTime,Jt as densityFog,Qt as densityFogFactor,$t as depth,er as depthPass,tr as determinant,rr as difference,ar as diffuseColor,or as directPointLight,ir as directionToColor,nr as directionToFaceDirection,lr as dispersion,sr as distance,cr as div,mr as dot,ur as drawIndex,pr as dynamicBufferAttribute,dr as element,gr as emissive,hr as equal,xr as equirectUV,fr as exp,br as exp2,vr as exponentialHeightFogFactor,wr as expression,_r as faceDirection,Sr as faceForward,Tr as faceforward,yr as float,Vr as floatBitsToInt,Mr as floatBitsToUint,Fr as floor,Dr as fog,Ir as fract,Br as frameGroup,Cr as frameId,Pr as frontFacing,Rr as fwidth,Ar as gain,Or as gapSize,kr as getConstNodeType,Nr as getCurrentStack,Lr as getDirection,Ur as getDistanceAttenuation,Gr as getGeometryRoughness,jr as getNormalFromDepth,qr as getParallaxCorrectNormal,zr as getRoughness,Zr as getScreenPosition,Xr as getShIrradianceAt,Hr as getShadowMaterial,Kr as getShadowRenderObjectFunction,Yr as getTextureIndex,Jr as getViewPosition,Qr as globalId,$r as glsl,ea as glslFn,ta as grayscale,ra as greaterThan,aa as greaterThanEqual,oa as hash,ia as highpModelNormalViewMatrix,na as highpModelViewMatrix,la as hue,sa as increment,ca as incrementBefore,ma as instance,ua as instanceIndex,pa as instancedArray,da as instancedBufferAttribute,ga as instancedDynamicBufferAttribute,ha as instancedMesh,xa as int,fa as intBitsToFloat,Er as interleavedGradientNoise,ba as inverse,va as inverseSqrt,wa as inversesqrt,_a as invocationLocalIndex,Sa as invocationSubgroupIndex,Ta as ior,ya as iridescence,Va as iridescenceIOR,Ma as iridescenceThickness,Fa as ivec2,Da as ivec3,Ia as ivec4,Ba as js,Ca as label,Pa as length,Ra as lengthSq,Aa as lessThan,Oa as lessThanEqual,ka as lightPosition,Na as lightProjectionUV,La as lightShadowMatrix,Ua as lightTargetDirection,Ga as lightTargetPosition,ja as lightViewPosition,Ea as lightingContext,Wa as lights,qa as linearDepth,za as linearToneMapping,Za as localId,Xa as log,Ha as log2,Ka as logarithmicDepthToViewZ,Ya as luminance,Ja as mat2,Qa as mat3,$a as mat4,eo as matcapUV,to as materialAO,ro as materialAlphaTest,ao as materialAnisotropy,oo as materialAnisotropyVector,io as materialAttenuationColor,no as materialAttenuationDistance,lo as materialClearcoat,so as materialClearcoatNormal,co as materialClearcoatRoughness,mo as materialColor,uo as materialDispersion,po as materialEmissive,go as materialEnvIntensity,ho as materialEnvRotation,xo as materialIOR,fo as materialIridescence,bo as materialIridescenceIOR,vo as materialIridescenceThickness,wo as materialLightMap,_o as materialLineDashOffset,So as materialLineDashSize,To as materialLineGapSize,yo as materialLineScale,Vo as materialLineWidth,Mo as materialMetalness,Fo as materialNormal,Do as materialOpacity,Io as materialPointSize,Bo as materialReference,Co as materialReflectivity,Po as materialRefractionRatio,Ro as materialRotation,Ao as materialRoughness,Oo as materialSheen,ko as materialSheenRoughness,No as materialShininess,Lo as materialSpecular,Uo as materialSpecularColor,Go as materialSpecularIntensity,jo as materialSpecularStrength,Eo as materialThickness,Wo as materialTransmission,qo as max,zo as maxMipLevel,Zo as mediumpModelViewMatrix,Xo as metalness,Ho as min,Ko as mix,Yo as mixElement,Jo as mod,Qo as modInt,$o as modelDirection,ei as modelNormalMatrix,ti as modelPosition,ri as modelRadius,ai as modelScale,oi as modelViewMatrix,ii as modelViewPosition,ni as modelViewProjection,li as modelWorldMatrix,si as modelWorldMatrixInverse,ci as morphReference,mi as mrt,ui as mul,pi as mx_aastep,di as mx_add,gi as mx_atan2,hi as mx_cell_noise_float,xi as mx_contrast,fi as mx_divide,bi as mx_fractal_noise_float,vi as mx_fractal_noise_vec2,wi as mx_fractal_noise_vec3,_i as mx_fractal_noise_vec4,Si as mx_frame,Ti as mx_heighttonormal,yi as mx_hsvtorgb,Vi as mx_ifequal,Mi as mx_ifgreater,Fi as mx_ifgreatereq,Di as mx_invert,Ii as mx_modulo,Bi as mx_multiply,Ci as mx_noise_float,Pi as mx_noise_vec3,Ri as mx_noise_vec4,Ai as mx_place2d,Oi as mx_power,ki as mx_ramp4,Ni as mx_ramplr,Li as mx_ramptb,Ui as mx_rgbtohsv,Gi as mx_rotate2d,ji as mx_rotate3d,Ei as mx_safepower,Wi as mx_separate,qi as mx_splitlr,zi as mx_splittb,Zi as mx_srgb_texture_to_lin_rec709,Xi as mx_subtract,Hi as mx_timer,Ki as mx_transform_uv,Yi as mx_unifiednoise2d,Ji as mx_unifiednoise3d,Qi as mx_worley_noise_float,$i as mx_worley_noise_vec2,en as mx_worley_noise_vec3,tn as negate,rn as neutralToneMapping,an as nodeArray,on as nodeImmutable,nn as nodeObject,ln as nodeObjectIntent,sn as nodeObjects,cn as nodeProxy,mn as nodeProxyIntent,un as normalFlat,pn as normalGeometry,dn as normalLocal,gn as normalMap,hn as normalView,xn as normalViewGeometry,fn as normalWorld,bn as normalWorldGeometry,vn as normalize,wn as not,_n as notEqual,Sn as numWorkgroups,Tn as objectDirection,yn as objectGroup,Vn as objectPosition,Mn as objectRadius,Fn as objectScale,Dn as objectViewPosition,In as objectWorldMatrix,An as oneMinus,On as or,kn as orthographicDepthToViewZ,Nn as oscSawtooth,Ln as oscSine,Un as oscSquare,Gn as oscTriangle,jn as output,En as outputStruct,Wn as overloadingFn,qn as packHalf2x16,zn as packSnorm2x16,Zn as packUnorm2x16,Xn as parabola,Hn as parallaxDirection,Kn as parallaxUV,Yn as parameter,Jn as pass,Qn as passTexture,$n as pcurve,el as perspectiveDepthToViewZ,tl as pmremTexture,rl as pointShadow,al as pointUV,ol as pointWidth,il as positionGeometry,nl as positionLocal,ll as positionPrevious,sl as positionView,cl as positionViewDirection,ml as positionWorld,ul as positionWorldDirection,pl as posterize,dl as pow,gl as pow2,hl as pow3,xl as pow4,fl as premultiplyAlpha,bl as property,vl as radians,wl as rand,_l as range,Sl as rangeFog,Tl as rangeFogFactor,yl as reciprocal,Vl as reference,Ml as referenceBuffer,Fl as reflect,Dl as reflectVector,Il as reflectView,Bl as reflector,Cl as refract,Pl as refractVector,Rl as refractView,Al as reinhardToneMapping,Ol as remap,kl as remapClamp,Nl as renderGroup,Ll as renderOutput,Ul as rendererReference,Gl as replaceDefaultUV,jl as rotate,El as rotateUV,Wl as roughness,ql as round,zl as rtt,Zl as sRGBTransferEOTF,Xl as sRGBTransferOETF,Hl as sample,Kl as sampler,Yl as samplerComparison,Jl as saturate,Ql as saturation,$l as screen,es as screenCoordinate,ts as screenDPR,rs as screenSize,as as screenUV,os as select,is as setCurrentStack,ns as setName,ls as shaderStages,ss as shadow,cs as shadowPositionWorld,ms as shapeCircle,us as sharedUniformGroup,ps as sheen,ds as sheenRoughness,gs as shiftLeft,hs as shiftRight,xs as shininess,fs as sign,bs as sin,ws as sinc,vs as sinh,_s as skinning,Ss as smoothstep,Ts as smoothstepElement,ys as specularColor,Vs as specularF90,Ms as spherizeUV,Fs as split,Ds as spritesheetUV,Is as sqrt,Bs as stack,Cs as step,Ps as stepElement,Rs as storage,As as storageBarrier,Os as storageTexture,ks as string,Ns as struct,Ls as sub,Zs as subBuild,Us as subgroupAdd,Gs as subgroupAll,js as subgroupAnd,Es as subgroupAny,Ws as subgroupBallot,qs as subgroupBroadcast,zs as subgroupBroadcastFirst,Xs as subgroupElect,Hs as subgroupExclusiveAdd,Ks as subgroupExclusiveMul,Ys as subgroupInclusiveAdd,Js as subgroupInclusiveMul,Qs as subgroupIndex,$s as subgroupMax,ec as subgroupMin,tc as subgroupMul,rc as subgroupOr,ac as subgroupShuffle,oc as subgroupShuffleDown,ic as subgroupShuffleUp,nc as subgroupShuffleXor,lc as subgroupSize,sc as subgroupXor,cc as tan,uc as tangentGeometry,pc as tangentLocal,dc as tangentView,gc as tangentWorld,mc as tanh,hc as texture,xc as texture3D,fc as textureBarrier,bc as textureBicubic,vc as textureBicubicLevel,wc as textureCubeUV,Tc as textureLevel,_c as textureLoad,Sc as textureSize,yc as textureStore,Vc as thickness,Mc as time,Fc as toneMapping,Dc as toneMappingExposure,Ic as toonOutlinePass,Bc as transformDirection,Cc as transformNormal,Pc as transformNormalToView,Rc as transformedClearcoatNormalView,Ac as transformedNormalView,Oc as transformedNormalWorld,kc as transmission,Nc as transpose,Lc as triNoise3D,Uc as triplanarTexture,Gc as triplanarTextures,jc as trunc,Ec as uint,Wc as uintBitsToFloat,qc as uniform,zc as uniformArray,Zc as uniformCubeTexture,Hc as uniformFlow,Xc as uniformGroup,Kc as uniformTexture,Yc as unpackHalf2x16,Jc as unpackSnorm2x16,Qc as unpackUnorm2x16,$c as unpremultiplyAlpha,em as userData,tm as uv,rm as uvec2,am as uvec3,om as uvec4,im as varying,nm as varyingProperty,lm as vec2,sm as vec3,cm as vec4,mm as vectorComponents,um as velocity,pm as vertexColor,dm as vertexIndex,gm as vertexStage,hm as vibrance,xm as viewZToLogarithmicDepth,fm as viewZToOrthographicDepth,bm as viewZToPerspectiveDepth,vm as viewZToReversedOrthographicDepth,wm as viewZToReversedPerspectiveDepth,_m as viewport,Sm as viewportCoordinate,Tm as viewportDepthTexture,ym as viewportLinearDepth,Vm as viewportMipTexture,Mm as viewportOpaqueMipTexture,Fm as viewportResolution,Dm as viewportSafeUV,Im as viewportSharedTexture,Bm as viewportSize,Cm as viewportTexture,Pm as viewportUV,Wr as vogelDiskSample,Rm as wgsl,Am as wgslFn,Om as workgroupArray,km as workgroupBarrier,Nm as workgroupId,Lm as workingToColorSpace,Um as xor};
|
|
6
|
+
import{TSL as e}from"three/webgpu";const t=e.BRDF_GGX,r=e.BRDF_Lambert,a=e.BasicPointShadowFilter,o=e.BasicShadowFilter,i=e.Break,n=e.Const,l=e.Continue,s=e.DFGLUT,c=e.D_GGX,m=e.Discard,u=e.EPSILON,p=e.F_Schlick,d=e.Fn,g=e.INFINITY,h=e.If,x=e.Loop,f=e.NodeAccess,b=e.NodeShaderStage,v=e.NodeType,w=e.NodeUpdateType,S=e.PCFShadowFilter,_=e.PCFSoftShadowFilter,T=e.PI,y=e.PI2,V=e.TWO_PI,M=e.HALF_PI,D=e.PointShadowFilter,F=e.Return,I=e.Schlick_to_F0,B=e.ShaderNode,C=e.Stack,N=e.Switch,P=e.TBNViewMatrix,R=e.VSMShadowFilter,k=e.V_GGX_SmithCorrelated,O=e.Var,A=e.VarIntent,L=e.abs,G=e.acesFilmicToneMapping,U=e.acos,j=e.acosh,E=e.add,W=e.addMethodChaining,q=e.addNodeElement,z=e.agxToneMapping,Z=e.all,X=e.alphaT,H=e.ambientOcclusion,K=e.and,Y=e.anisotropy,J=e.anisotropyB,Q=e.anisotropyT,$=e.any,ee=e.append,te=e.array,re=e.asin,ae=e.asinh,oe=e.assign,ie=e.atan,ne=e.atanh,le=e.atomicAdd,se=e.atomicAnd,ce=e.atomicFunc,me=e.atomicLoad,ue=e.atomicMax,pe=e.atomicMin,de=e.atomicOr,ge=e.atomicStore,he=e.atomicSub,xe=e.atomicXor,fe=e.attenuationColor,be=e.attenuationDistance,ve=e.attribute,we=e.attributeArray,Se=e.backgroundBlurriness,_e=e.backgroundIntensity,Te=e.backgroundRotation,ye=e.batch,Ve=e.bentNormalView,Me=e.billboarding,De=e.bitAnd,Fe=e.bitNot,Ie=e.bitOr,Be=e.bitXor,Ce=e.bitangentGeometry,Ne=e.bitangentLocal,Pe=e.bitangentView,Re=e.bitangentWorld,ke=e.bitcast,Oe=e.blendBurn,Ae=e.blendColor,Le=e.blendDodge,Ge=e.blendOverlay,Ue=e.blendScreen,je=e.blur,Ee=e.bool,We=e.buffer,qe=e.bufferAttribute,ze=e.bumpMap,Ze=e.builtin,Xe=e.builtinAOContext,He=e.builtinShadowContext,Ke=e.bvec2,Ye=e.bvec3,Je=e.bvec4,Qe=e.bypass,$e=e.cache,et=e.call,tt=e.cameraFar,rt=e.cameraIndex,at=e.cameraNear,ot=e.cameraNormalMatrix,it=e.cameraPosition,nt=e.cameraProjectionMatrix,lt=e.cameraProjectionMatrixInverse,st=e.cameraViewMatrix,ct=e.cameraViewport,mt=e.cameraWorldMatrix,ut=e.cbrt,pt=e.cdl,dt=e.ceil,gt=e.checker,ht=e.cineonToneMapping,xt=e.clamp,ft=e.clearcoat,bt=e.clearcoatNormalView,vt=e.clearcoatRoughness,wt=e.clipSpace,St=e.code,_t=e.color,Tt=e.colorSpaceToWorking,yt=e.colorToDirection,Vt=e.compute,Mt=e.computeKernel,Dt=e.computeSkinning,Ft=e.context,It=e.convert,Bt=e.convertColorSpace,Ct=e.convertToTexture,Nt=e.countLeadingZeros,Pt=e.countOneBits,Rt=e.countTrailingZeros,kt=e.cos,Ot=e.cosh,At=e.cross,Lt=e.cubeTexture,Gt=e.cubeTextureBase,Ut=e.dFdx,jt=e.dFdy,Et=e.dashSize,Wt=e.debug,qt=e.decrement,zt=e.decrementBefore,Zt=e.defaultBuildStages,Xt=e.defaultShaderStages,Ht=e.defined,Kt=e.degrees,Yt=e.deltaTime,Jt=e.densityFog,Qt=e.densityFogFactor,$t=e.depth,er=e.depthPass,tr=e.determinant,rr=e.difference,ar=e.diffuseColor,or=e.directPointLight,ir=e.directionToColor,nr=e.directionToFaceDirection,lr=e.dispersion,sr=e.distance,cr=e.div,mr=e.dot,ur=e.drawIndex,pr=e.dynamicBufferAttribute,dr=e.element,gr=e.emissive,hr=e.equal,xr=e.equirectDirection,fr=e.equirectUV,br=e.exp,vr=e.exp2,wr=e.exponentialHeightFogFactor,Sr=e.expression,_r=e.faceDirection,Tr=e.faceForward,yr=e.faceforward,Vr=e.float,Mr=e.floatBitsToInt,Dr=e.floatBitsToUint,Fr=e.floor,Ir=e.fog,Br=e.fract,Cr=e.frameGroup,Nr=e.frameId,Pr=e.frontFacing,Rr=e.fwidth,kr=e.gain,Or=e.gapSize,Ar=e.getConstNodeType,Lr=e.getCurrentStack,Gr=e.getDirection,Ur=e.getDistanceAttenuation,jr=e.getGeometryRoughness,Er=e.getNormalFromDepth,Wr=e.interleavedGradientNoise,qr=e.vogelDiskSample,zr=e.getParallaxCorrectNormal,Zr=e.getRoughness,Xr=e.getScreenPosition,Hr=e.getShIrradianceAt,Kr=e.getShadowMaterial,Yr=e.getShadowRenderObjectFunction,Jr=e.getTextureIndex,Qr=e.getViewPosition,$r=e.globalId,ea=e.glsl,ta=e.glslFn,ra=e.grayscale,aa=e.greaterThan,oa=e.greaterThanEqual,ia=e.hash,na=e.highpModelNormalViewMatrix,la=e.highpModelViewMatrix,sa=e.hue,ca=e.increment,ma=e.incrementBefore,ua=e.instance,pa=e.instanceIndex,da=e.instancedArray,ga=e.instancedBufferAttribute,ha=e.instancedDynamicBufferAttribute,xa=e.instancedMesh,fa=e.int,ba=e.intBitsToFloat,va=e.inverse,wa=e.inverseSqrt,Sa=e.inversesqrt,_a=e.invocationLocalIndex,Ta=e.invocationSubgroupIndex,ya=e.ior,Va=e.iridescence,Ma=e.iridescenceIOR,Da=e.iridescenceThickness,Fa=e.ivec2,Ia=e.ivec3,Ba=e.ivec4,Ca=e.js,Na=e.label,Pa=e.length,Ra=e.lengthSq,ka=e.lessThan,Oa=e.lessThanEqual,Aa=e.lightPosition,La=e.lightProjectionUV,Ga=e.lightShadowMatrix,Ua=e.lightTargetDirection,ja=e.lightTargetPosition,Ea=e.lightViewPosition,Wa=e.lightingContext,qa=e.lights,za=e.linearDepth,Za=e.linearToneMapping,Xa=e.localId,Ha=e.log,Ka=e.log2,Ya=e.logarithmicDepthToViewZ,Ja=e.luminance,Qa=e.mat2,$a=e.mat3,eo=e.mat4,to=e.matcapUV,ro=e.materialAO,ao=e.materialAlphaTest,oo=e.materialAnisotropy,io=e.materialAnisotropyVector,no=e.materialAttenuationColor,lo=e.materialAttenuationDistance,so=e.materialClearcoat,co=e.materialClearcoatNormal,mo=e.materialClearcoatRoughness,uo=e.materialColor,po=e.materialDispersion,go=e.materialEmissive,ho=e.materialEnvIntensity,xo=e.materialEnvRotation,fo=e.materialIOR,bo=e.materialIridescence,vo=e.materialIridescenceIOR,wo=e.materialIridescenceThickness,So=e.materialLightMap,_o=e.materialLineDashOffset,To=e.materialLineDashSize,yo=e.materialLineGapSize,Vo=e.materialLineScale,Mo=e.materialLineWidth,Do=e.materialMetalness,Fo=e.materialNormal,Io=e.materialOpacity,Bo=e.materialPointSize,Co=e.materialReference,No=e.materialReflectivity,Po=e.materialRefractionRatio,Ro=e.materialRotation,ko=e.materialRoughness,Oo=e.materialSheen,Ao=e.materialSheenRoughness,Lo=e.materialShininess,Go=e.materialSpecular,Uo=e.materialSpecularColor,jo=e.materialSpecularIntensity,Eo=e.materialSpecularStrength,Wo=e.materialThickness,qo=e.materialTransmission,zo=e.max,Zo=e.maxMipLevel,Xo=e.mediumpModelViewMatrix,Ho=e.metalness,Ko=e.min,Yo=e.mix,Jo=e.mixElement,Qo=e.mod,$o=e.modelDirection,ei=e.modelNormalMatrix,ti=e.modelPosition,ri=e.modelRadius,ai=e.modelScale,oi=e.modelViewMatrix,ii=e.modelViewPosition,ni=e.modelViewProjection,li=e.modelWorldMatrix,si=e.modelWorldMatrixInverse,ci=e.morphReference,mi=e.mrt,ui=e.mul,pi=e.mx_aastep,di=e.mx_add,gi=e.mx_atan2,hi=e.mx_cell_noise_float,xi=e.mx_contrast,fi=e.mx_divide,bi=e.mx_fractal_noise_float,vi=e.mx_fractal_noise_vec2,wi=e.mx_fractal_noise_vec3,Si=e.mx_fractal_noise_vec4,_i=e.mx_frame,Ti=e.mx_heighttonormal,yi=e.mx_hsvtorgb,Vi=e.mx_ifequal,Mi=e.mx_ifgreater,Di=e.mx_ifgreatereq,Fi=e.mx_invert,Ii=e.mx_modulo,Bi=e.mx_multiply,Ci=e.mx_noise_float,Ni=e.mx_noise_vec3,Pi=e.mx_noise_vec4,Ri=e.mx_place2d,ki=e.mx_power,Oi=e.mx_ramp4,Ai=e.mx_ramplr,Li=e.mx_ramptb,Gi=e.mx_rgbtohsv,Ui=e.mx_rotate2d,ji=e.mx_rotate3d,Ei=e.mx_safepower,Wi=e.mx_separate,qi=e.mx_splitlr,zi=e.mx_splittb,Zi=e.mx_srgb_texture_to_lin_rec709,Xi=e.mx_subtract,Hi=e.mx_timer,Ki=e.mx_transform_uv,Yi=e.mx_unifiednoise2d,Ji=e.mx_unifiednoise3d,Qi=e.mx_worley_noise_float,$i=e.mx_worley_noise_vec2,en=e.mx_worley_noise_vec3,tn=e.negate,rn=e.negateOnBackSide,an=e.neutralToneMapping,on=e.nodeArray,nn=e.nodeImmutable,ln=e.nodeObject,sn=e.nodeObjectIntent,cn=e.nodeObjects,mn=e.nodeProxy,un=e.nodeProxyIntent,pn=e.normalFlat,dn=e.normalGeometry,gn=e.normalLocal,hn=e.normalMap,xn=e.normalView,fn=e.normalViewGeometry,bn=e.normalWorld,vn=e.normalWorldGeometry,wn=e.normalize,Sn=e.not,_n=e.notEqual,Tn=e.numWorkgroups,yn=e.objectDirection,Vn=e.objectGroup,Mn=e.objectPosition,Dn=e.objectRadius,Fn=e.objectScale,In=e.objectViewPosition,Bn=e.objectWorldMatrix,Cn=e.OnBeforeObjectUpdate,Nn=e.OnBeforeMaterialUpdate,Pn=e.OnObjectUpdate,Rn=e.OnMaterialUpdate,kn=e.oneMinus,On=e.or,An=e.orthographicDepthToViewZ,Ln=e.oscSawtooth,Gn=e.oscSine,Un=e.oscSquare,jn=e.oscTriangle,En=e.output,Wn=e.outputStruct,qn=e.overloadingFn,zn=e.overrideNode,Zn=e.overrideNodes,Xn=e.packHalf2x16,Hn=e.packSnorm2x16,Kn=e.packUnorm2x16,Yn=e.packNormalToRGB,Jn=e.parabola,Qn=e.parallaxDirection,$n=e.parallaxUV,el=e.parameter,tl=e.pass,rl=e.passTexture,al=e.pcurve,ol=e.perspectiveDepthToViewZ,il=e.pmremTexture,nl=e.pointShadow,ll=e.pointUV,sl=e.pointWidth,cl=e.positionGeometry,ml=e.positionLocal,ul=e.positionPrevious,pl=e.positionView,dl=e.positionViewDirection,gl=e.positionWorld,hl=e.positionWorldDirection,xl=e.posterize,fl=e.pow,bl=e.pow2,vl=e.pow3,wl=e.pow4,Sl=e.premultiplyAlpha,_l=e.property,Tl=e.radians,yl=e.rand,Vl=e.range,Ml=e.rangeFog,Dl=e.rangeFogFactor,Fl=e.reciprocal,Il=e.reference,Bl=e.referenceBuffer,Cl=e.reflect,Nl=e.reflectVector,Pl=e.reflectView,Rl=e.reflector,kl=e.refract,Ol=e.refractVector,Al=e.refractView,Ll=e.reinhardToneMapping,Gl=e.remap,Ul=e.remapClamp,jl=e.renderGroup,El=e.renderOutput,Wl=e.rendererReference,ql=e.replaceDefaultUV,zl=e.rotate,Zl=e.rotateUV,Xl=e.roughness,Hl=e.round,Kl=e.rtt,Yl=e.sRGBTransferEOTF,Jl=e.sRGBTransferOETF,Ql=e.sample,$l=e.sampler,es=e.samplerComparison,ts=e.saturate,rs=e.saturation,as=e.screen,os=e.screenCoordinate,is=e.screenDPR,ns=e.screenSize,ls=e.screenUV,ss=e.select,cs=e.setCurrentStack,ms=e.setName,us=e.shaderStages,ps=e.shadow,ds=e.shadowPositionWorld,gs=e.shapeCircle,hs=e.sharedUniformGroup,xs=e.sheen,fs=e.sheenRoughness,bs=e.shiftLeft,vs=e.shiftRight,ws=e.shininess,Ss=e.sign,_s=e.sin,Ts=e.sinh,ys=e.sinc,Vs=e.skinning,Ms=e.smoothstep,Ds=e.smoothstepElement,Fs=e.specularColor,Is=e.specularF90,Bs=e.spherizeUV,Cs=e.split,Ns=e.spritesheetUV,Ps=e.sqrt,Rs=e.stack,ks=e.step,Os=e.stepElement,As=e.storage,Ls=e.storageBarrier,Gs=e.storageTexture,Us=e.storageTexture3D,js=e.struct,Es=e.sub,Ws=e.subgroupAdd,qs=e.subgroupAll,zs=e.subgroupAnd,Zs=e.subgroupAny,Xs=e.subgroupBallot,Hs=e.subgroupBroadcast,Ks=e.subgroupBroadcastFirst,Ys=e.subBuild,Js=e.subgroupElect,Qs=e.subgroupExclusiveAdd,$s=e.subgroupExclusiveMul,ec=e.subgroupInclusiveAdd,tc=e.subgroupInclusiveMul,rc=e.subgroupIndex,ac=e.subgroupMax,oc=e.subgroupMin,ic=e.subgroupMul,nc=e.subgroupOr,lc=e.subgroupShuffle,sc=e.subgroupShuffleDown,cc=e.subgroupShuffleUp,mc=e.subgroupShuffleXor,uc=e.subgroupSize,pc=e.subgroupXor,dc=e.tan,gc=e.tanh,hc=e.tangentGeometry,xc=e.tangentLocal,fc=e.tangentView,bc=e.tangentWorld,vc=e.texture,wc=e.texture3D,Sc=e.textureBarrier,_c=e.textureBicubic,Tc=e.textureBicubicLevel,yc=e.textureCubeUV,Vc=e.textureLoad,Mc=e.textureSize,Dc=e.textureLevel,Fc=e.textureStore,Ic=e.thickness,Bc=e.time,Cc=e.toneMapping,Nc=e.toneMappingExposure,Pc=e.toonOutlinePass,Rc=e.transformDirection,kc=e.transformNormal,Oc=e.transformNormalByInverseViewMatrix,Ac=e.transformNormalByViewMatrix,Lc=e.transformNormalToView,Gc=e.transformedClearcoatNormalView,Uc=e.transformedNormalView,jc=e.transformedNormalWorld,Ec=e.transmission,Wc=e.transpose,qc=e.triNoise3D,zc=e.triplanarTexture,Zc=e.triplanarTextures,Xc=e.trunc,Hc=e.uint,Kc=e.uintBitsToFloat,Yc=e.uniform,Jc=e.uniformArray,Qc=e.uniformCubeTexture,$c=e.uniformGroup,em=e.uniformFlow,tm=e.uniformTexture,rm=e.unpackHalf2x16,am=e.unpackSnorm2x16,om=e.unpackUnorm2x16,im=e.unpackRGBToNormal,nm=e.unpremultiplyAlpha,lm=e.userData,sm=e.uv,cm=e.uvec2,mm=e.uvec3,um=e.uvec4,pm=e.varying,dm=e.varyingProperty,gm=e.vec2,hm=e.vec3,xm=e.vec4,fm=e.vectorComponents,bm=e.velocity,vm=e.vertexColor,wm=e.vertexIndex,Sm=e.vertexStage,_m=e.vibrance,Tm=e.viewZToLogarithmicDepth,ym=e.viewZToOrthographicDepth,Vm=e.viewZToPerspectiveDepth,Mm=e.viewZToReversedOrthographicDepth,Dm=e.viewZToReversedPerspectiveDepth,Fm=e.viewport,Im=e.viewportCoordinate,Bm=e.viewportDepthTexture,Cm=e.viewportLinearDepth,Nm=e.viewportMipTexture,Pm=e.viewportOpaqueMipTexture,Rm=e.viewportResolution,km=e.viewportSafeUV,Om=e.viewportSharedTexture,Am=e.viewportSize,Lm=e.viewportTexture,Gm=e.viewportUV,Um=e.wgsl,jm=e.wgslFn,Em=e.workgroupArray,Wm=e.workgroupBarrier,qm=e.workgroupId,zm=e.workingToColorSpace,Zm=e.xor;export{t as BRDF_GGX,r as BRDF_Lambert,a as BasicPointShadowFilter,o as BasicShadowFilter,i as Break,n as Const,l as Continue,s as DFGLUT,c as D_GGX,m as Discard,u as EPSILON,p as F_Schlick,d as Fn,M as HALF_PI,g as INFINITY,h as If,x as Loop,f as NodeAccess,b as NodeShaderStage,v as NodeType,w as NodeUpdateType,Nn as OnBeforeMaterialUpdate,Cn as OnBeforeObjectUpdate,Rn as OnMaterialUpdate,Pn as OnObjectUpdate,S as PCFShadowFilter,_ as PCFSoftShadowFilter,T as PI,y as PI2,D as PointShadowFilter,F as Return,I as Schlick_to_F0,B as ShaderNode,C as Stack,N as Switch,P as TBNViewMatrix,V as TWO_PI,R as VSMShadowFilter,k as V_GGX_SmithCorrelated,O as Var,A as VarIntent,L as abs,G as acesFilmicToneMapping,U as acos,j as acosh,E as add,W as addMethodChaining,q as addNodeElement,z as agxToneMapping,Z as all,X as alphaT,H as ambientOcclusion,K as and,Y as anisotropy,J as anisotropyB,Q as anisotropyT,$ as any,ee as append,te as array,re as asin,ae as asinh,oe as assign,ie as atan,ne as atanh,le as atomicAdd,se as atomicAnd,ce as atomicFunc,me as atomicLoad,ue as atomicMax,pe as atomicMin,de as atomicOr,ge as atomicStore,he as atomicSub,xe as atomicXor,fe as attenuationColor,be as attenuationDistance,ve as attribute,we as attributeArray,Se as backgroundBlurriness,_e as backgroundIntensity,Te as backgroundRotation,ye as batch,Ve as bentNormalView,Me as billboarding,De as bitAnd,Fe as bitNot,Ie as bitOr,Be as bitXor,Ce as bitangentGeometry,Ne as bitangentLocal,Pe as bitangentView,Re as bitangentWorld,ke as bitcast,Oe as blendBurn,Ae as blendColor,Le as blendDodge,Ge as blendOverlay,Ue as blendScreen,je as blur,Ee as bool,We as buffer,qe as bufferAttribute,Ze as builtin,Xe as builtinAOContext,He as builtinShadowContext,ze as bumpMap,Ke as bvec2,Ye as bvec3,Je as bvec4,Qe as bypass,$e as cache,et as call,tt as cameraFar,rt as cameraIndex,at as cameraNear,ot as cameraNormalMatrix,it as cameraPosition,nt as cameraProjectionMatrix,lt as cameraProjectionMatrixInverse,st as cameraViewMatrix,ct as cameraViewport,mt as cameraWorldMatrix,ut as cbrt,pt as cdl,dt as ceil,gt as checker,ht as cineonToneMapping,xt as clamp,ft as clearcoat,bt as clearcoatNormalView,vt as clearcoatRoughness,wt as clipSpace,St as code,_t as color,Tt as colorSpaceToWorking,yt as colorToDirection,Vt as compute,Mt as computeKernel,Dt as computeSkinning,Ft as context,It as convert,Bt as convertColorSpace,Ct as convertToTexture,kt as cos,Ot as cosh,Nt as countLeadingZeros,Pt as countOneBits,Rt as countTrailingZeros,At as cross,Lt as cubeTexture,Gt as cubeTextureBase,Ut as dFdx,jt as dFdy,Et as dashSize,Wt as debug,qt as decrement,zt as decrementBefore,Zt as defaultBuildStages,Xt as defaultShaderStages,Ht as defined,Kt as degrees,Yt as deltaTime,Jt as densityFog,Qt as densityFogFactor,$t as depth,er as depthPass,tr as determinant,rr as difference,ar as diffuseColor,or as directPointLight,ir as directionToColor,nr as directionToFaceDirection,lr as dispersion,sr as distance,cr as div,mr as dot,ur as drawIndex,pr as dynamicBufferAttribute,dr as element,gr as emissive,hr as equal,xr as equirectDirection,fr as equirectUV,br as exp,vr as exp2,wr as exponentialHeightFogFactor,Sr as expression,_r as faceDirection,Tr as faceForward,yr as faceforward,Vr as float,Mr as floatBitsToInt,Dr as floatBitsToUint,Fr as floor,Ir as fog,Br as fract,Cr as frameGroup,Nr as frameId,Pr as frontFacing,Rr as fwidth,kr as gain,Or as gapSize,Ar as getConstNodeType,Lr as getCurrentStack,Gr as getDirection,Ur as getDistanceAttenuation,jr as getGeometryRoughness,Er as getNormalFromDepth,zr as getParallaxCorrectNormal,Zr as getRoughness,Xr as getScreenPosition,Hr as getShIrradianceAt,Kr as getShadowMaterial,Yr as getShadowRenderObjectFunction,Jr as getTextureIndex,Qr as getViewPosition,$r as globalId,ea as glsl,ta as glslFn,ra as grayscale,aa as greaterThan,oa as greaterThanEqual,ia as hash,na as highpModelNormalViewMatrix,la as highpModelViewMatrix,sa as hue,ca as increment,ma as incrementBefore,ua as instance,pa as instanceIndex,da as instancedArray,ga as instancedBufferAttribute,ha as instancedDynamicBufferAttribute,xa as instancedMesh,fa as int,ba as intBitsToFloat,Wr as interleavedGradientNoise,va as inverse,wa as inverseSqrt,Sa as inversesqrt,_a as invocationLocalIndex,Ta as invocationSubgroupIndex,ya as ior,Va as iridescence,Ma as iridescenceIOR,Da as iridescenceThickness,Fa as ivec2,Ia as ivec3,Ba as ivec4,Ca as js,Na as label,Pa as length,Ra as lengthSq,ka as lessThan,Oa as lessThanEqual,Aa as lightPosition,La as lightProjectionUV,Ga as lightShadowMatrix,Ua as lightTargetDirection,ja as lightTargetPosition,Ea as lightViewPosition,Wa as lightingContext,qa as lights,za as linearDepth,Za as linearToneMapping,Xa as localId,Ha as log,Ka as log2,Ya as logarithmicDepthToViewZ,Ja as luminance,Qa as mat2,$a as mat3,eo as mat4,to as matcapUV,ro as materialAO,ao as materialAlphaTest,oo as materialAnisotropy,io as materialAnisotropyVector,no as materialAttenuationColor,lo as materialAttenuationDistance,so as materialClearcoat,co as materialClearcoatNormal,mo as materialClearcoatRoughness,uo as materialColor,po as materialDispersion,go as materialEmissive,ho as materialEnvIntensity,xo as materialEnvRotation,fo as materialIOR,bo as materialIridescence,vo as materialIridescenceIOR,wo as materialIridescenceThickness,So as materialLightMap,_o as materialLineDashOffset,To as materialLineDashSize,yo as materialLineGapSize,Vo as materialLineScale,Mo as materialLineWidth,Do as materialMetalness,Fo as materialNormal,Io as materialOpacity,Bo as materialPointSize,Co as materialReference,No as materialReflectivity,Po as materialRefractionRatio,Ro as materialRotation,ko as materialRoughness,Oo as materialSheen,Ao as materialSheenRoughness,Lo as materialShininess,Go as materialSpecular,Uo as materialSpecularColor,jo as materialSpecularIntensity,Eo as materialSpecularStrength,Wo as materialThickness,qo as materialTransmission,zo as max,Zo as maxMipLevel,Xo as mediumpModelViewMatrix,Ho as metalness,Ko as min,Yo as mix,Jo as mixElement,Qo as mod,$o as modelDirection,ei as modelNormalMatrix,ti as modelPosition,ri as modelRadius,ai as modelScale,oi as modelViewMatrix,ii as modelViewPosition,ni as modelViewProjection,li as modelWorldMatrix,si as modelWorldMatrixInverse,ci as morphReference,mi as mrt,ui as mul,pi as mx_aastep,di as mx_add,gi as mx_atan2,hi as mx_cell_noise_float,xi as mx_contrast,fi as mx_divide,bi as mx_fractal_noise_float,vi as mx_fractal_noise_vec2,wi as mx_fractal_noise_vec3,Si as mx_fractal_noise_vec4,_i as mx_frame,Ti as mx_heighttonormal,yi as mx_hsvtorgb,Vi as mx_ifequal,Mi as mx_ifgreater,Di as mx_ifgreatereq,Fi as mx_invert,Ii as mx_modulo,Bi as mx_multiply,Ci as mx_noise_float,Ni as mx_noise_vec3,Pi as mx_noise_vec4,Ri as mx_place2d,ki as mx_power,Oi as mx_ramp4,Ai as mx_ramplr,Li as mx_ramptb,Gi as mx_rgbtohsv,Ui as mx_rotate2d,ji as mx_rotate3d,Ei as mx_safepower,Wi as mx_separate,qi as mx_splitlr,zi as mx_splittb,Zi as mx_srgb_texture_to_lin_rec709,Xi as mx_subtract,Hi as mx_timer,Ki as mx_transform_uv,Yi as mx_unifiednoise2d,Ji as mx_unifiednoise3d,Qi as mx_worley_noise_float,$i as mx_worley_noise_vec2,en as mx_worley_noise_vec3,tn as negate,rn as negateOnBackSide,an as neutralToneMapping,on as nodeArray,nn as nodeImmutable,ln as nodeObject,sn as nodeObjectIntent,cn as nodeObjects,mn as nodeProxy,un as nodeProxyIntent,pn as normalFlat,dn as normalGeometry,gn as normalLocal,hn as normalMap,xn as normalView,fn as normalViewGeometry,bn as normalWorld,vn as normalWorldGeometry,wn as normalize,Sn as not,_n as notEqual,Tn as numWorkgroups,yn as objectDirection,Vn as objectGroup,Mn as objectPosition,Dn as objectRadius,Fn as objectScale,In as objectViewPosition,Bn as objectWorldMatrix,kn as oneMinus,On as or,An as orthographicDepthToViewZ,Ln as oscSawtooth,Gn as oscSine,Un as oscSquare,jn as oscTriangle,En as output,Wn as outputStruct,qn as overloadingFn,zn as overrideNode,Zn as overrideNodes,Xn as packHalf2x16,Yn as packNormalToRGB,Hn as packSnorm2x16,Kn as packUnorm2x16,Jn as parabola,Qn as parallaxDirection,$n as parallaxUV,el as parameter,tl as pass,rl as passTexture,al as pcurve,ol as perspectiveDepthToViewZ,il as pmremTexture,nl as pointShadow,ll as pointUV,sl as pointWidth,cl as positionGeometry,ml as positionLocal,ul as positionPrevious,pl as positionView,dl as positionViewDirection,gl as positionWorld,hl as positionWorldDirection,xl as posterize,fl as pow,bl as pow2,vl as pow3,wl as pow4,Sl as premultiplyAlpha,_l as property,Tl as radians,yl as rand,Vl as range,Ml as rangeFog,Dl as rangeFogFactor,Fl as reciprocal,Il as reference,Bl as referenceBuffer,Cl as reflect,Nl as reflectVector,Pl as reflectView,Rl as reflector,kl as refract,Ol as refractVector,Al as refractView,Ll as reinhardToneMapping,Gl as remap,Ul as remapClamp,jl as renderGroup,El as renderOutput,Wl as rendererReference,ql as replaceDefaultUV,zl as rotate,Zl as rotateUV,Xl as roughness,Hl as round,Kl as rtt,Yl as sRGBTransferEOTF,Jl as sRGBTransferOETF,Ql as sample,$l as sampler,es as samplerComparison,ts as saturate,rs as saturation,as as screen,os as screenCoordinate,is as screenDPR,ns as screenSize,ls as screenUV,ss as select,cs as setCurrentStack,ms as setName,us as shaderStages,ps as shadow,ds as shadowPositionWorld,gs as shapeCircle,hs as sharedUniformGroup,xs as sheen,fs as sheenRoughness,bs as shiftLeft,vs as shiftRight,ws as shininess,Ss as sign,_s as sin,ys as sinc,Ts as sinh,Vs as skinning,Ms as smoothstep,Ds as smoothstepElement,Fs as specularColor,Is as specularF90,Bs as spherizeUV,Cs as split,Ns as spritesheetUV,Ps as sqrt,Rs as stack,ks as step,Os as stepElement,As as storage,Ls as storageBarrier,Gs as storageTexture,Us as storageTexture3D,js as struct,Es as sub,Ys as subBuild,Ws as subgroupAdd,qs as subgroupAll,zs as subgroupAnd,Zs as subgroupAny,Xs as subgroupBallot,Hs as subgroupBroadcast,Ks as subgroupBroadcastFirst,Js as subgroupElect,Qs as subgroupExclusiveAdd,$s as subgroupExclusiveMul,ec as subgroupInclusiveAdd,tc as subgroupInclusiveMul,rc as subgroupIndex,ac as subgroupMax,oc as subgroupMin,ic as subgroupMul,nc as subgroupOr,lc as subgroupShuffle,sc as subgroupShuffleDown,cc as subgroupShuffleUp,mc as subgroupShuffleXor,uc as subgroupSize,pc as subgroupXor,dc as tan,hc as tangentGeometry,xc as tangentLocal,fc as tangentView,bc as tangentWorld,gc as tanh,vc as texture,wc as texture3D,Sc as textureBarrier,_c as textureBicubic,Tc as textureBicubicLevel,yc as textureCubeUV,Dc as textureLevel,Vc as textureLoad,Mc as textureSize,Fc as textureStore,Ic as thickness,Bc as time,Cc as toneMapping,Nc as toneMappingExposure,Pc as toonOutlinePass,Rc as transformDirection,kc as transformNormal,Oc as transformNormalByInverseViewMatrix,Ac as transformNormalByViewMatrix,Lc as transformNormalToView,Gc as transformedClearcoatNormalView,Uc as transformedNormalView,jc as transformedNormalWorld,Ec as transmission,Wc as transpose,qc as triNoise3D,zc as triplanarTexture,Zc as triplanarTextures,Xc as trunc,Hc as uint,Kc as uintBitsToFloat,Yc as uniform,Jc as uniformArray,Qc as uniformCubeTexture,em as uniformFlow,$c as uniformGroup,tm as uniformTexture,rm as unpackHalf2x16,im as unpackRGBToNormal,am as unpackSnorm2x16,om as unpackUnorm2x16,nm as unpremultiplyAlpha,lm as userData,sm as uv,cm as uvec2,mm as uvec3,um as uvec4,pm as varying,dm as varyingProperty,gm as vec2,hm as vec3,xm as vec4,fm as vectorComponents,bm as velocity,vm as vertexColor,wm as vertexIndex,Sm as vertexStage,_m as vibrance,Tm as viewZToLogarithmicDepth,ym as viewZToOrthographicDepth,Vm as viewZToPerspectiveDepth,Mm as viewZToReversedOrthographicDepth,Dm as viewZToReversedPerspectiveDepth,Fm as viewport,Im as viewportCoordinate,Bm as viewportDepthTexture,Cm as viewportLinearDepth,Nm as viewportMipTexture,Pm as viewportOpaqueMipTexture,Rm as viewportResolution,km as viewportSafeUV,Om as viewportSharedTexture,Am as viewportSize,Lm as viewportTexture,Gm as viewportUV,qr as vogelDiskSample,Um as wgsl,jm as wgslFn,Em as workgroupArray,Wm as workgroupBarrier,qm as workgroupId,zm as workingToColorSpace,Zm as xor};
|