@types/three 0.166.0 → 0.167.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.
Files changed (309) hide show
  1. three/README.md +1 -1
  2. three/build/three.webgpu.d.ts +1 -0
  3. three/build/three.webgpu.min.d.ts +1 -0
  4. three/examples/jsm/Addons.d.ts +1 -1
  5. three/examples/jsm/animation/MMDPhysics.d.ts +4 -4
  6. three/examples/jsm/csm/CSM.d.ts +3 -4
  7. three/examples/jsm/csm/CSMFrustum.d.ts +1 -1
  8. three/examples/jsm/lights/RectAreaLightTexturesLib.d.ts +7 -0
  9. three/examples/jsm/lights/RectAreaLightUniformsLib.d.ts +4 -2
  10. three/examples/jsm/lines/webgpu/Line2.d.ts +14 -0
  11. three/examples/jsm/lines/webgpu/LineSegments2.d.ts +15 -0
  12. three/examples/jsm/loaders/KTX2Loader.d.ts +1 -2
  13. three/examples/jsm/loaders/LUTImageLoader.d.ts +18 -0
  14. three/examples/jsm/loaders/MaterialXLoader.d.ts +1 -2
  15. three/examples/jsm/loaders/UltraHDRLoader.d.ts +21 -0
  16. three/package.json +4 -3
  17. three/src/Three.WebGPU.d.ts +184 -0
  18. three/src/Three.d.ts +25 -91
  19. three/src/animation/AnimationClip.d.ts +12 -4
  20. three/src/animation/AnimationUtils.d.ts +32 -7
  21. three/src/animation/KeyframeTrack.d.ts +9 -1
  22. three/src/animation/PropertyBinding.d.ts +12 -12
  23. three/src/cameras/OrthographicCamera.d.ts +27 -0
  24. three/src/cameras/PerspectiveCamera.d.ts +31 -0
  25. three/src/constants.d.ts +7 -1
  26. three/src/core/BufferAttribute.d.ts +11 -6
  27. three/src/core/BufferGeometry.d.ts +26 -3
  28. three/src/core/InterleavedBufferAttribute.d.ts +3 -3
  29. three/src/core/Object3D.d.ts +51 -6
  30. three/src/extras/DataUtils.d.ts +9 -2
  31. three/src/extras/ImageUtils.d.ts +6 -7
  32. three/src/extras/core/Curve.d.ts +8 -2
  33. three/src/extras/core/CurvePath.d.ts +9 -1
  34. three/src/extras/core/Path.d.ts +9 -2
  35. three/src/extras/core/Shape.d.ts +9 -1
  36. three/src/lights/Light.d.ts +19 -2
  37. three/src/lights/LightShadow.d.ts +13 -2
  38. three/src/lights/webgpu/IESSpotLight.d.ts +6 -0
  39. three/src/loaders/Cache.d.ts +13 -8
  40. three/src/materials/Material.d.ts +164 -2
  41. three/src/materials/ShaderMaterial.d.ts +49 -2
  42. three/src/math/ColorManagement.d.ts +3 -0
  43. three/src/math/Euler.d.ts +4 -2
  44. three/src/math/Matrix2.d.ts +53 -0
  45. three/src/math/Matrix3.d.ts +67 -115
  46. three/src/math/Matrix4.d.ts +48 -100
  47. three/src/math/Quaternion.d.ts +5 -3
  48. three/src/math/Vector2.d.ts +1 -1
  49. three/{examples/jsm → src}/nodes/Nodes.d.ts +28 -5
  50. three/{examples/jsm → src}/nodes/accessors/BatchNode.d.ts +1 -1
  51. three/{examples/jsm → src}/nodes/accessors/BufferAttributeNode.d.ts +4 -1
  52. three/{examples/jsm → src}/nodes/accessors/CameraNode.d.ts +3 -1
  53. three/{examples/jsm → src}/nodes/accessors/CubeTextureNode.d.ts +11 -3
  54. three/{examples/jsm → src}/nodes/accessors/InstanceNode.d.ts +1 -1
  55. three/{examples/jsm → src}/nodes/accessors/MaterialNode.d.ts +11 -2
  56. three/{examples/jsm → src}/nodes/accessors/MaterialReferenceNode.d.ts +1 -1
  57. three/{examples/jsm → src}/nodes/accessors/ModelNode.d.ts +1 -1
  58. three/{examples/jsm → src}/nodes/accessors/NormalNode.d.ts +3 -3
  59. three/{examples/jsm → src}/nodes/accessors/Object3DNode.d.ts +1 -1
  60. three/{examples/jsm → src}/nodes/accessors/ReflectVectorNode.d.ts +3 -0
  61. three/{examples/jsm → src}/nodes/accessors/SkinningNode.d.ts +1 -1
  62. three/{examples/jsm → src}/nodes/accessors/StorageTextureNode.d.ts +1 -1
  63. three/{examples/jsm → src}/nodes/accessors/Texture3DNode.d.ts +3 -2
  64. three/{examples/jsm → src}/nodes/accessors/TextureNode.d.ts +9 -2
  65. three/{examples/jsm → src}/nodes/core/IndexNode.d.ts +3 -1
  66. three/{examples/jsm → src}/nodes/core/LightingModel.d.ts +1 -3
  67. three/src/nodes/core/MRTNode.d.ts +19 -0
  68. three/{examples/jsm → src}/nodes/core/Node.d.ts +3 -10
  69. three/{examples/jsm → src}/nodes/core/NodeBuilder.d.ts +7 -1
  70. three/{examples/jsm → src}/nodes/core/NodeCache.d.ts +2 -1
  71. three/{examples/jsm → src}/nodes/core/NodeFrame.d.ts +5 -2
  72. three/{examples/jsm → src}/nodes/core/NodeUtils.d.ts +6 -1
  73. three/{examples/jsm → src}/nodes/core/PropertyNode.d.ts +1 -0
  74. three/{examples/jsm → src}/nodes/display/AnamorphicNode.d.ts +1 -1
  75. three/src/nodes/display/BloomNode.d.ts +35 -0
  76. three/{examples/jsm → src}/nodes/display/ColorAdjustmentNode.d.ts +0 -1
  77. three/{examples/jsm → src}/nodes/display/ColorSpaceNode.d.ts +1 -1
  78. three/src/nodes/display/DenoiseNode.d.ts +38 -0
  79. three/{examples/jsm → src}/nodes/display/DepthOfFieldNode.d.ts +4 -4
  80. three/{examples/jsm → src}/nodes/display/DotScreenNode.d.ts +3 -8
  81. three/src/nodes/display/FXAANode.d.ts +19 -0
  82. three/src/nodes/display/FilmNode.d.ts +25 -0
  83. three/src/nodes/display/GTAONode.d.ts +46 -0
  84. three/{examples/jsm → src}/nodes/display/GaussianBlurNode.d.ts +8 -5
  85. three/src/nodes/display/Lut3DNode.d.ts +30 -0
  86. three/{examples/jsm → src}/nodes/display/NormalMapNode.d.ts +1 -2
  87. three/src/nodes/display/PassNode.d.ts +62 -0
  88. three/src/nodes/display/PixelationPassNode.d.ts +67 -0
  89. three/src/nodes/display/RenderOutputNode.d.ts +28 -0
  90. three/{examples/jsm → src}/nodes/display/ToneMappingNode.d.ts +1 -1
  91. three/src/nodes/display/TransitionNode.d.ts +41 -0
  92. three/{examples/jsm → src}/nodes/display/ViewportTextureNode.d.ts +1 -1
  93. three/{examples/jsm → src}/nodes/functions/BSDF/V_GGX_SmithCorrelated_Anisotropic.d.ts +1 -1
  94. three/src/nodes/functions/BasicLightingModel.d.ts +7 -0
  95. three/src/nodes/functions/PhongLightingModel.d.ts +7 -0
  96. three/{examples/jsm → src}/nodes/geometry/RangeNode.d.ts +4 -1
  97. three/{examples/jsm → src}/nodes/lighting/AnalyticLightNode.d.ts +1 -1
  98. three/src/nodes/lighting/BasicEnvironmentNode.d.ts +10 -0
  99. three/src/nodes/lighting/BasicLightMapNode.d.ts +8 -0
  100. three/{examples/jsm → src}/nodes/lighting/HemisphereLightNode.d.ts +1 -1
  101. three/{examples/jsm → src}/nodes/lighting/LightingNode.d.ts +2 -0
  102. three/{examples/jsm → src}/nodes/lighting/LightsNode.d.ts +1 -1
  103. three/{examples/jsm → src}/nodes/lighting/PointLightNode.d.ts +1 -1
  104. three/src/nodes/lighting/RectAreaLightNode.d.ts +21 -0
  105. three/{examples/jsm → src}/nodes/lighting/SpotLightNode.d.ts +1 -1
  106. three/{examples/jsm → src}/nodes/loaders/NodeLoader.d.ts +3 -1
  107. three/{examples/jsm → src}/nodes/loaders/NodeMaterialLoader.d.ts +1 -1
  108. three/{examples/jsm → src}/nodes/loaders/NodeObjectLoader.d.ts +3 -1
  109. three/src/nodes/materials/Line2NodeMaterial.d.ts +53 -0
  110. three/{examples/jsm → src}/nodes/materials/LineBasicNodeMaterial.d.ts +3 -1
  111. three/{examples/jsm → src}/nodes/materials/Materials.d.ts +2 -1
  112. three/{examples/jsm → src}/nodes/materials/MeshBasicNodeMaterial.d.ts +5 -1
  113. three/{examples/jsm → src}/nodes/materials/MeshMatcapNodeMaterial.d.ts +5 -1
  114. three/{examples/jsm → src}/nodes/materials/MeshNormalNodeMaterial.d.ts +4 -1
  115. three/{examples/jsm → src}/nodes/materials/MeshPhongNodeMaterial.d.ts +6 -1
  116. three/{examples/jsm → src}/nodes/materials/MeshPhysicalNodeMaterial.d.ts +4 -2
  117. three/{examples/jsm → src}/nodes/materials/MeshStandardNodeMaterial.d.ts +6 -1
  118. three/{examples/jsm → src}/nodes/materials/MeshToonNodeMaterial.d.ts +5 -1
  119. three/{examples/jsm → src}/nodes/materials/NodeMaterial.d.ts +22 -16
  120. three/{examples/jsm → src}/nodes/materials/PointsNodeMaterial.d.ts +3 -1
  121. three/{examples/jsm → src}/nodes/materials/ShadowNodeMaterial.d.ts +2 -1
  122. three/{examples/jsm → src}/nodes/materials/SpriteNodeMaterial.d.ts +3 -1
  123. three/{examples/jsm → src}/nodes/math/MathNode.d.ts +4 -0
  124. three/{examples/jsm → src}/nodes/pmrem/PMREMNode.d.ts +1 -1
  125. three/{examples/jsm → src}/nodes/utils/MaxMipLevelNode.d.ts +3 -3
  126. three/src/nodes/utils/PackingNode.d.ts +24 -0
  127. three/src/nodes/utils/RTTNode.d.ts +45 -0
  128. three/{examples/jsm → src}/nodes/utils/ReflectorNode.d.ts +3 -1
  129. three/src/objects/InstancedMesh.d.ts +15 -2
  130. three/src/objects/LOD.d.ts +17 -1
  131. three/src/objects/Mesh.d.ts +11 -1
  132. three/src/objects/Points.d.ts +0 -3
  133. three/src/objects/Skeleton.d.ts +10 -3
  134. three/src/objects/SkinnedMesh.d.ts +15 -3
  135. three/{examples/jsm → src}/renderers/common/Animation.d.ts +0 -1
  136. three/{examples/jsm → src}/renderers/common/Attributes.d.ts +4 -2
  137. three/{examples/jsm → src}/renderers/common/Backend.d.ts +1 -1
  138. three/{examples/jsm → src}/renderers/common/Background.d.ts +2 -1
  139. three/{examples/jsm → src}/renderers/common/ClippingContext.d.ts +6 -1
  140. three/{examples/jsm → src}/renderers/common/Color4.d.ts +1 -1
  141. three/{examples/jsm → src}/renderers/common/CubeRenderTarget.d.ts +4 -1
  142. three/{examples/jsm → src}/renderers/common/Geometries.d.ts +4 -1
  143. three/{examples/jsm → src}/renderers/common/Info.d.ts +1 -1
  144. three/{examples/jsm → src}/renderers/common/PostProcessing.d.ts +9 -3
  145. three/{examples/jsm/objects → src/renderers/common}/QuadMesh.d.ts +4 -2
  146. three/{examples/jsm → src}/renderers/common/RenderBundle.d.ts +2 -1
  147. three/{examples/jsm → src}/renderers/common/RenderBundles.d.ts +2 -1
  148. three/{examples/jsm → src}/renderers/common/RenderContext.d.ts +4 -1
  149. three/{examples/jsm → src}/renderers/common/RenderContexts.d.ts +3 -1
  150. three/{examples/jsm → src}/renderers/common/RenderList.d.ts +5 -1
  151. three/{examples/jsm → src}/renderers/common/RenderLists.d.ts +2 -1
  152. three/{examples/jsm → src}/renderers/common/RenderObject.d.ts +16 -13
  153. three/{examples/jsm → src}/renderers/common/RenderObjects.d.ts +5 -2
  154. three/{examples/jsm → src}/renderers/common/Renderer.d.ts +30 -29
  155. three/{examples/jsm → src}/renderers/common/SampledTexture.d.ts +1 -1
  156. three/{examples/jsm → src}/renderers/common/StorageBufferAttribute.d.ts +1 -1
  157. three/{examples/jsm → src}/renderers/common/StorageInstancedBufferAttribute.d.ts +2 -1
  158. three/{examples/jsm → src}/renderers/common/StorageTexture.d.ts +1 -1
  159. three/{examples/jsm → src}/renderers/common/Textures.d.ts +4 -1
  160. three/{examples/jsm → src}/renderers/common/Uniform.d.ts +6 -1
  161. three/{examples/jsm → src}/renderers/common/extras/PMREMGenerator.d.ts +2 -1
  162. three/{examples/jsm → src}/renderers/common/nodes/NodeUniform.d.ts +6 -1
  163. three/{examples/jsm → src}/renderers/common/nodes/NodeUniformsGroup.d.ts +1 -2
  164. three/{examples/jsm → src}/renderers/common/nodes/Nodes.d.ts +21 -8
  165. three/src/renderers/shaders/ShaderLib.d.ts +3 -1
  166. three/src/renderers/shaders/UniformsUtils.d.ts +6 -3
  167. three/{examples/jsm/renderers/webgl → src/renderers/webgl-fallback}/WebGLBackend.d.ts +1 -1
  168. three/{examples/jsm → src}/renderers/webgpu/WebGPUBackend.d.ts +1 -1
  169. three/{examples/jsm → src}/renderers/webgpu/nodes/WGSLNodeBuilder.d.ts +6 -4
  170. three/src/scenes/Fog.d.ts +7 -24
  171. three/src/scenes/FogExp2.d.ts +9 -3
  172. three/src/scenes/Scene.d.ts +21 -5
  173. three/src/textures/Source.d.ts +15 -1
  174. three/src/textures/Texture.d.ts +37 -1
  175. three/examples/jsm/deprecated/Geometry.d.ts +0 -341
  176. three/examples/jsm/lights/IESSpotLight.d.ts +0 -5
  177. three/examples/jsm/nodes/display/PassNode.d.ts +0 -46
  178. three/examples/jsm/nodes/functions/PhongLightingModel.d.ts +0 -7
  179. three/examples/jsm/nodes/lighting/RectAreaLightNode.d.ts +0 -10
  180. /three/{examples/jsm → src}/nodes/accessors/AccessorsUtils.d.ts +0 -0
  181. /three/{examples/jsm → src}/nodes/accessors/BitangentNode.d.ts +0 -0
  182. /three/{examples/jsm → src}/nodes/accessors/BufferNode.d.ts +0 -0
  183. /three/{examples/jsm → src}/nodes/accessors/ClippingNode.d.ts +0 -0
  184. /three/{examples/jsm → src}/nodes/accessors/ModelViewProjectionNode.d.ts +0 -0
  185. /three/{examples/jsm → src}/nodes/accessors/PointUVNode.d.ts +0 -0
  186. /three/{examples/jsm → src}/nodes/accessors/PositionNode.d.ts +0 -0
  187. /three/{examples/jsm → src}/nodes/accessors/ReferenceNode.d.ts +0 -0
  188. /three/{examples/jsm → src}/nodes/accessors/RendererReferenceNode.d.ts +0 -0
  189. /three/{examples/jsm → src}/nodes/accessors/StorageBufferNode.d.ts +0 -0
  190. /three/{examples/jsm → src}/nodes/accessors/TangentNode.d.ts +0 -0
  191. /three/{examples/jsm → src}/nodes/accessors/TextureBicubicNode.d.ts +0 -0
  192. /three/{examples/jsm → src}/nodes/accessors/UVNode.d.ts +0 -0
  193. /three/{examples/jsm → src}/nodes/accessors/UniformsNode.d.ts +0 -0
  194. /three/{examples/jsm → src}/nodes/accessors/UserDataNode.d.ts +0 -0
  195. /three/{examples/jsm → src}/nodes/accessors/VertexColorNode.d.ts +0 -0
  196. /three/{examples/jsm → src}/nodes/code/CodeNode.d.ts +0 -0
  197. /three/{examples/jsm → src}/nodes/code/ExpressionNode.d.ts +0 -0
  198. /three/{examples/jsm → src}/nodes/code/FunctionCallNode.d.ts +0 -0
  199. /three/{examples/jsm → src}/nodes/code/FunctionNode.d.ts +0 -0
  200. /three/{examples/jsm → src}/nodes/core/AssignNode.d.ts +0 -0
  201. /three/{examples/jsm → src}/nodes/core/AttributeNode.d.ts +0 -0
  202. /three/{examples/jsm → src}/nodes/core/BypassNode.d.ts +0 -0
  203. /three/{examples/jsm → src}/nodes/core/CacheNode.d.ts +0 -0
  204. /three/{examples/jsm → src}/nodes/core/ConstNode.d.ts +0 -0
  205. /three/{examples/jsm → src}/nodes/core/ContextNode.d.ts +0 -0
  206. /three/{examples/jsm → src}/nodes/core/InputNode.d.ts +0 -0
  207. /three/{examples/jsm → src}/nodes/core/NodeAttribute.d.ts +0 -0
  208. /three/{examples/jsm → src}/nodes/core/NodeCode.d.ts +0 -0
  209. /three/{examples/jsm → src}/nodes/core/NodeFunction.d.ts +0 -0
  210. /three/{examples/jsm → src}/nodes/core/NodeFunctionInput.d.ts +0 -0
  211. /three/{examples/jsm → src}/nodes/core/NodeKeywords.d.ts +0 -0
  212. /three/{examples/jsm → src}/nodes/core/NodeParser.d.ts +0 -0
  213. /three/{examples/jsm → src}/nodes/core/NodeUniform.d.ts +0 -0
  214. /three/{examples/jsm → src}/nodes/core/NodeVar.d.ts +0 -0
  215. /three/{examples/jsm → src}/nodes/core/NodeVarying.d.ts +0 -0
  216. /three/{examples/jsm → src}/nodes/core/OutputStructNode.d.ts +0 -0
  217. /three/{examples/jsm → src}/nodes/core/StackNode.d.ts +0 -0
  218. /three/{examples/jsm → src}/nodes/core/StructTypeNode.d.ts +0 -0
  219. /three/{examples/jsm → src}/nodes/core/TempNode.d.ts +0 -0
  220. /three/{examples/jsm → src}/nodes/core/UniformGroup.d.ts +0 -0
  221. /three/{examples/jsm → src}/nodes/core/UniformGroupNode.d.ts +0 -0
  222. /three/{examples/jsm → src}/nodes/core/UniformNode.d.ts +0 -0
  223. /three/{examples/jsm → src}/nodes/core/VarNode.d.ts +0 -0
  224. /three/{examples/jsm → src}/nodes/core/VaryingNode.d.ts +0 -0
  225. /three/{examples/jsm → src}/nodes/core/constants.d.ts +0 -0
  226. /three/{examples/jsm → src}/nodes/display/AfterImageNode.d.ts +0 -0
  227. /three/{examples/jsm → src}/nodes/display/BlendModeNode.d.ts +0 -0
  228. /three/{examples/jsm → src}/nodes/display/FrontFacingNode.d.ts +0 -0
  229. /three/{examples/jsm → src}/nodes/display/PosterizeNode.d.ts +0 -0
  230. /three/{examples/jsm → src}/nodes/display/RGBShiftNode.d.ts +0 -0
  231. /three/{examples/jsm → src}/nodes/display/SobelOperatorNode.d.ts +0 -0
  232. /three/{examples/jsm → src}/nodes/display/ViewportDepthNode.d.ts +0 -0
  233. /three/{examples/jsm → src}/nodes/display/ViewportDepthTextureNode.d.ts +0 -0
  234. /three/{examples/jsm → src}/nodes/display/ViewportNode.d.ts +0 -0
  235. /three/{examples/jsm → src}/nodes/display/ViewportSharedTextureNode.d.ts +0 -0
  236. /three/{examples/jsm → src}/nodes/fog/FogExp2Node.d.ts +0 -0
  237. /three/{examples/jsm → src}/nodes/fog/FogNode.d.ts +0 -0
  238. /three/{examples/jsm → src}/nodes/fog/FogRangeNode.d.ts +0 -0
  239. /three/{examples/jsm → src}/nodes/functions/BSDF/BRDF_GGX.d.ts +0 -0
  240. /three/{examples/jsm → src}/nodes/functions/BSDF/BRDF_Lambert.d.ts +0 -0
  241. /three/{examples/jsm → src}/nodes/functions/BSDF/BRDF_Sheen.d.ts +0 -0
  242. /three/{examples/jsm → src}/nodes/functions/BSDF/DFGApprox.d.ts +0 -0
  243. /three/{examples/jsm → src}/nodes/functions/BSDF/D_GGX.d.ts +0 -0
  244. /three/{examples/jsm → src}/nodes/functions/BSDF/D_GGX_Anisotropic.d.ts +0 -0
  245. /three/{examples/jsm → src}/nodes/functions/BSDF/F_Schlick.d.ts +0 -0
  246. /three/{examples/jsm → src}/nodes/functions/BSDF/LTC.d.ts +0 -0
  247. /three/{examples/jsm → src}/nodes/functions/BSDF/V_GGX_SmithCorrelated.d.ts +0 -0
  248. /three/{examples/jsm → src}/nodes/functions/PhysicalLightingModel.d.ts +0 -0
  249. /three/{examples/jsm → src}/nodes/functions/ShadowMaskModel.d.ts +0 -0
  250. /three/{examples/jsm → src}/nodes/functions/ToonLightingModel.d.ts +0 -0
  251. /three/{examples/jsm → src}/nodes/functions/material/getGeometryRoughness.d.ts +0 -0
  252. /three/{examples/jsm → src}/nodes/functions/material/getRoughness.d.ts +0 -0
  253. /three/{examples/jsm → src}/nodes/gpgpu/ComputeNode.d.ts +0 -0
  254. /three/{examples/jsm → src}/nodes/lighting/AONode.d.ts +0 -0
  255. /three/{examples/jsm → src}/nodes/lighting/EnvironmentNode.d.ts +0 -0
  256. /three/{examples/jsm → src}/nodes/lighting/IrradianceNode.d.ts +0 -0
  257. /three/{examples/jsm → src}/nodes/lighting/LightUtils.d.ts +0 -0
  258. /three/{examples/jsm → src}/nodes/lighting/LightingContextNode.d.ts +0 -0
  259. /three/{examples/jsm → src}/nodes/materials/MeshSSSNodeMaterial.d.ts +0 -0
  260. /three/{examples/jsm → src}/nodes/materials/VolumeNodeMaterial.d.ts +0 -0
  261. /three/{examples/jsm → src}/nodes/materialx/MaterialXNodes.d.ts +0 -0
  262. /three/{examples/jsm → src}/nodes/materialx/lib/mx_hsv.d.ts +0 -0
  263. /three/{examples/jsm → src}/nodes/materialx/lib/mx_noise.d.ts +0 -0
  264. /three/{examples/jsm → src}/nodes/materialx/lib/mx_transform_color.d.ts +0 -0
  265. /three/{examples/jsm → src}/nodes/math/CondNode.d.ts +0 -0
  266. /three/{examples/jsm → src}/nodes/math/HashNode.d.ts +0 -0
  267. /three/{examples/jsm → src}/nodes/math/MathUtils.d.ts +0 -0
  268. /three/{examples/jsm → src}/nodes/math/OperatorNode.d.ts +0 -0
  269. /three/{examples/jsm → src}/nodes/math/TriNoise3D.d.ts +0 -0
  270. /three/{examples/jsm → src}/nodes/procedural/CheckerNode.d.ts +0 -0
  271. /three/{examples/jsm → src}/nodes/shadernode/ShaderNode.d.ts +0 -0
  272. /three/{examples/jsm → src}/nodes/utils/ArrayElementNode.d.ts +0 -0
  273. /three/{examples/jsm → src}/nodes/utils/ConvertNode.d.ts +0 -0
  274. /three/{examples/jsm → src}/nodes/utils/DiscardNode.d.ts +0 -0
  275. /three/{examples/jsm → src}/nodes/utils/EquirectUVNode.d.ts +0 -0
  276. /three/{examples/jsm → src}/nodes/utils/JoinNode.d.ts +0 -0
  277. /three/{examples/jsm → src}/nodes/utils/MatcapUVNode.d.ts +0 -0
  278. /three/{examples/jsm → src}/nodes/utils/OscNode.d.ts +0 -0
  279. /three/{examples/jsm → src}/nodes/utils/RemapNode.d.ts +0 -0
  280. /three/{examples/jsm → src}/nodes/utils/RotateNode.d.ts +0 -0
  281. /three/{examples/jsm → src}/nodes/utils/RotateUVNode.d.ts +0 -0
  282. /three/{examples/jsm → src}/nodes/utils/SplitNode.d.ts +0 -0
  283. /three/{examples/jsm → src}/nodes/utils/SpriteSheetUVNode.d.ts +0 -0
  284. /three/{examples/jsm → src}/nodes/utils/StoargeArrayElementNode.d.ts +0 -0
  285. /three/{examples/jsm → src}/nodes/utils/TimerNode.d.ts +0 -0
  286. /three/{examples/jsm → src}/nodes/utils/TriplanarTexturesNode.d.ts +0 -0
  287. /three/{examples/jsm → src}/renderers/common/BindGroup.d.ts +0 -0
  288. /three/{examples/jsm → src}/renderers/common/Binding.d.ts +0 -0
  289. /three/{examples/jsm → src}/renderers/common/Bindings.d.ts +0 -0
  290. /three/{examples/jsm → src}/renderers/common/Buffer.d.ts +0 -0
  291. /three/{examples/jsm → src}/renderers/common/BufferUtils.d.ts +0 -0
  292. /three/{examples/jsm → src}/renderers/common/ChainMap.d.ts +0 -0
  293. /three/{examples/jsm → src}/renderers/common/ComputePipeline.d.ts +0 -0
  294. /three/{examples/jsm → src}/renderers/common/Constants.d.ts +0 -0
  295. /three/{examples/jsm → src}/renderers/common/DataMap.d.ts +0 -0
  296. /three/{examples/jsm → src}/renderers/common/Pipeline.d.ts +0 -0
  297. /three/{examples/jsm → src}/renderers/common/Pipelines.d.ts +0 -0
  298. /three/{examples/jsm → src}/renderers/common/ProgrammableStage.d.ts +0 -0
  299. /three/{examples/jsm → src}/renderers/common/RenderPipeline.d.ts +0 -0
  300. /three/{examples/jsm → src}/renderers/common/Sampler.d.ts +0 -0
  301. /three/{examples/jsm → src}/renderers/common/UniformBuffer.d.ts +0 -0
  302. /three/{examples/jsm → src}/renderers/common/UniformsGroup.d.ts +0 -0
  303. /three/{examples/jsm → src}/renderers/common/nodes/NodeBuilderState.d.ts +0 -0
  304. /three/{examples/jsm → src}/renderers/common/nodes/NodeSampledTexture.d.ts +0 -0
  305. /three/{examples/jsm → src}/renderers/common/nodes/NodeSampler.d.ts +0 -0
  306. /three/{examples/jsm → src}/renderers/webgpu/WebGPURenderer.d.ts +0 -0
  307. /three/{examples/jsm → src}/renderers/webgpu/nodes/WGSLNodeFunction.d.ts +0 -0
  308. /three/{examples/jsm → src}/renderers/webgpu/nodes/WGSLNodeParser.d.ts +0 -0
  309. /three/{examples/jsm → src}/renderers/webgpu/utils/WebGPUConstants.d.ts +0 -0
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes