list.js 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994
  1. var list = {
  2. "en": {
  3. "Manual": {
  4. "Getting Started": {
  5. "Creating a scene": "manual/en/introduction/Creating-a-scene",
  6. "Installation": "manual/en/introduction/Installation",
  7. "Browser support": "manual/en/introduction/Browser-support",
  8. "WebGL compatibility check": "manual/en/introduction/WebGL-compatibility-check",
  9. "How to run things locally": "manual/en/introduction/How-to-run-things-locally",
  10. "Typescript setup": "manual/en/introduction/Typescript-setup",
  11. "Drawing lines": "manual/en/introduction/Drawing-lines",
  12. "Creating text": "manual/en/introduction/Creating-text",
  13. "Loading 3D models": "manual/en/introduction/Loading-3D-models",
  14. "FAQ": "manual/en/introduction/FAQ",
  15. "Useful links": "manual/en/introduction/Useful-links"
  16. },
  17. "Next Steps": {
  18. "How to update things": "manual/en/introduction/How-to-update-things",
  19. "How to dispose of objects": "manual/en/introduction/How-to-dispose-of-objects",
  20. "How to create VR content": "manual/en/introduction/How-to-create-VR-content",
  21. "How to use post-processing": "manual/en/introduction/How-to-use-post-processing",
  22. "Matrix transformations": "manual/en/introduction/Matrix-transformations",
  23. "Animation system": "manual/en/introduction/Animation-system"
  24. },
  25. "Build Tools": {
  26. "Testing with NPM": "manual/en/buildTools/Testing-with-NPM"
  27. }
  28. },
  29. "Reference": {
  30. "Animation": {
  31. "AnimationAction": "api/en/animation/AnimationAction",
  32. "AnimationClip": "api/en/animation/AnimationClip",
  33. "AnimationMixer": "api/en/animation/AnimationMixer",
  34. "AnimationObjectGroup": "api/en/animation/AnimationObjectGroup",
  35. "AnimationUtils": "api/en/animation/AnimationUtils",
  36. "KeyframeTrack": "api/en/animation/KeyframeTrack",
  37. "PropertyBinding": "api/en/animation/PropertyBinding",
  38. "PropertyMixer": "api/en/animation/PropertyMixer"
  39. },
  40. "Animation / Tracks": {
  41. "BooleanKeyframeTrack": "api/en/animation/tracks/BooleanKeyframeTrack",
  42. "ColorKeyframeTrack": "api/en/animation/tracks/ColorKeyframeTrack",
  43. "NumberKeyframeTrack": "api/en/animation/tracks/NumberKeyframeTrack",
  44. "QuaternionKeyframeTrack": "api/en/animation/tracks/QuaternionKeyframeTrack",
  45. "StringKeyframeTrack": "api/en/animation/tracks/StringKeyframeTrack",
  46. "VectorKeyframeTrack": "api/en/animation/tracks/VectorKeyframeTrack"
  47. },
  48. "Audio": {
  49. "Audio": "api/en/audio/Audio",
  50. "AudioAnalyser": "api/en/audio/AudioAnalyser",
  51. "AudioContext": "api/en/audio/AudioContext",
  52. "AudioListener": "api/en/audio/AudioListener",
  53. "PositionalAudio": "api/en/audio/PositionalAudio"
  54. },
  55. "Cameras": {
  56. "ArrayCamera": "api/en/cameras/ArrayCamera",
  57. "Camera": "api/en/cameras/Camera",
  58. "CubeCamera": "api/en/cameras/CubeCamera",
  59. "OrthographicCamera": "api/en/cameras/OrthographicCamera",
  60. "PerspectiveCamera": "api/en/cameras/PerspectiveCamera",
  61. "StereoCamera": "api/en/cameras/StereoCamera"
  62. },
  63. "Constants": {
  64. "Animation": "api/en/constants/Animation",
  65. "Core": "api/en/constants/Core",
  66. "CustomBlendingEquation": "api/en/constants/CustomBlendingEquations",
  67. "Materials": "api/en/constants/Materials",
  68. "Renderer": "api/en/constants/Renderer",
  69. "Textures": "api/en/constants/Textures"
  70. },
  71. "Core": {
  72. "BufferAttribute": "api/en/core/BufferAttribute",
  73. "BufferGeometry": "api/en/core/BufferGeometry",
  74. "Clock": "api/en/core/Clock",
  75. "DirectGeometry": "api/en/core/DirectGeometry",
  76. "EventDispatcher": "api/en/core/EventDispatcher",
  77. "Face3": "api/en/core/Face3",
  78. "Geometry": "api/en/core/Geometry",
  79. "GLBufferAttribute": "api/en/core/GLBufferAttribute",
  80. "InstancedBufferAttribute": "api/en/core/InstancedBufferAttribute",
  81. "InstancedBufferGeometry": "api/en/core/InstancedBufferGeometry",
  82. "InstancedInterleavedBuffer": "api/en/core/InstancedInterleavedBuffer",
  83. "InterleavedBuffer": "api/en/core/InterleavedBuffer",
  84. "InterleavedBufferAttribute": "api/en/core/InterleavedBufferAttribute",
  85. "Layers": "api/en/core/Layers",
  86. "Object3D": "api/en/core/Object3D",
  87. "Raycaster": "api/en/core/Raycaster",
  88. "Uniform": "api/en/core/Uniform"
  89. },
  90. "Core / BufferAttributes": {
  91. "BufferAttribute Types": "api/en/core/bufferAttributeTypes/BufferAttributeTypes"
  92. },
  93. "Extras": {
  94. "Earcut": "api/en/extras/Earcut",
  95. "ImageUtils": "api/en/extras/ImageUtils",
  96. "PMREMGenerator": "api/en/extras/PMREMGenerator",
  97. "ShapeUtils": "api/en/extras/ShapeUtils",
  98. },
  99. "Extras / Core": {
  100. "Curve": "api/en/extras/core/Curve",
  101. "CurvePath": "api/en/extras/core/CurvePath",
  102. "Font": "api/en/extras/core/Font",
  103. "Interpolations": "api/en/extras/core/Interpolations",
  104. "Path": "api/en/extras/core/Path",
  105. "Shape": "api/en/extras/core/Shape",
  106. "ShapePath": "api/en/extras/core/ShapePath"
  107. },
  108. "Extras / Curves": {
  109. "ArcCurve": "api/en/extras/curves/ArcCurve",
  110. "CatmullRomCurve3": "api/en/extras/curves/CatmullRomCurve3",
  111. "CubicBezierCurve": "api/en/extras/curves/CubicBezierCurve",
  112. "CubicBezierCurve3": "api/en/extras/curves/CubicBezierCurve3",
  113. "EllipseCurve": "api/en/extras/curves/EllipseCurve",
  114. "LineCurve": "api/en/extras/curves/LineCurve",
  115. "LineCurve3": "api/en/extras/curves/LineCurve3",
  116. "QuadraticBezierCurve": "api/en/extras/curves/QuadraticBezierCurve",
  117. "QuadraticBezierCurve3": "api/en/extras/curves/QuadraticBezierCurve3",
  118. "SplineCurve": "api/en/extras/curves/SplineCurve"
  119. },
  120. "Extras / Objects": {
  121. "ImmediateRenderObject": "api/en/extras/objects/ImmediateRenderObject",
  122. },
  123. "Geometries": {
  124. "BoxBufferGeometry": "api/en/geometries/BoxBufferGeometry",
  125. "BoxGeometry": "api/en/geometries/BoxGeometry",
  126. "CircleBufferGeometry": "api/en/geometries/CircleBufferGeometry",
  127. "CircleGeometry": "api/en/geometries/CircleGeometry",
  128. "ConeBufferGeometry": "api/en/geometries/ConeBufferGeometry",
  129. "ConeGeometry": "api/en/geometries/ConeGeometry",
  130. "CylinderBufferGeometry": "api/en/geometries/CylinderBufferGeometry",
  131. "CylinderGeometry": "api/en/geometries/CylinderGeometry",
  132. "DodecahedronBufferGeometry": "api/en/geometries/DodecahedronBufferGeometry",
  133. "DodecahedronGeometry": "api/en/geometries/DodecahedronGeometry",
  134. "EdgesGeometry": "api/en/geometries/EdgesGeometry",
  135. "ExtrudeBufferGeometry": "api/en/geometries/ExtrudeBufferGeometry",
  136. "ExtrudeGeometry": "api/en/geometries/ExtrudeGeometry",
  137. "IcosahedronBufferGeometry": "api/en/geometries/IcosahedronBufferGeometry",
  138. "IcosahedronGeometry": "api/en/geometries/IcosahedronGeometry",
  139. "LatheBufferGeometry": "api/en/geometries/LatheBufferGeometry",
  140. "LatheGeometry": "api/en/geometries/LatheGeometry",
  141. "OctahedronBufferGeometry": "api/en/geometries/OctahedronBufferGeometry",
  142. "OctahedronGeometry": "api/en/geometries/OctahedronGeometry",
  143. "ParametricBufferGeometry": "api/en/geometries/ParametricBufferGeometry",
  144. "ParametricGeometry": "api/en/geometries/ParametricGeometry",
  145. "PlaneBufferGeometry": "api/en/geometries/PlaneBufferGeometry",
  146. "PlaneGeometry": "api/en/geometries/PlaneGeometry",
  147. "PolyhedronBufferGeometry": "api/en/geometries/PolyhedronBufferGeometry",
  148. "PolyhedronGeometry": "api/en/geometries/PolyhedronGeometry",
  149. "RingBufferGeometry": "api/en/geometries/RingBufferGeometry",
  150. "RingGeometry": "api/en/geometries/RingGeometry",
  151. "ShapeBufferGeometry": "api/en/geometries/ShapeBufferGeometry",
  152. "ShapeGeometry": "api/en/geometries/ShapeGeometry",
  153. "SphereBufferGeometry": "api/en/geometries/SphereBufferGeometry",
  154. "SphereGeometry": "api/en/geometries/SphereGeometry",
  155. "TetrahedronBufferGeometry": "api/en/geometries/TetrahedronBufferGeometry",
  156. "TetrahedronGeometry": "api/en/geometries/TetrahedronGeometry",
  157. "TextBufferGeometry": "api/en/geometries/TextBufferGeometry",
  158. "TextGeometry": "api/en/geometries/TextGeometry",
  159. "TorusBufferGeometry": "api/en/geometries/TorusBufferGeometry",
  160. "TorusGeometry": "api/en/geometries/TorusGeometry",
  161. "TorusKnotBufferGeometry": "api/en/geometries/TorusKnotBufferGeometry",
  162. "TorusKnotGeometry": "api/en/geometries/TorusKnotGeometry",
  163. "TubeBufferGeometry": "api/en/geometries/TubeBufferGeometry",
  164. "TubeGeometry": "api/en/geometries/TubeGeometry",
  165. "WireframeGeometry": "api/en/geometries/WireframeGeometry"
  166. },
  167. "Helpers": {
  168. "ArrowHelper": "api/en/helpers/ArrowHelper",
  169. "AxesHelper": "api/en/helpers/AxesHelper",
  170. "BoxHelper": "api/en/helpers/BoxHelper",
  171. "Box3Helper": "api/en/helpers/Box3Helper",
  172. "CameraHelper": "api/en/helpers/CameraHelper",
  173. "DirectionalLightHelper": "api/en/helpers/DirectionalLightHelper",
  174. "GridHelper": "api/en/helpers/GridHelper",
  175. "PolarGridHelper": "api/en/helpers/PolarGridHelper",
  176. "HemisphereLightHelper": "api/en/helpers/HemisphereLightHelper",
  177. "PlaneHelper": "api/en/helpers/PlaneHelper",
  178. "PointLightHelper": "api/en/helpers/PointLightHelper",
  179. "SkeletonHelper": "api/en/helpers/SkeletonHelper",
  180. "SpotLightHelper": "api/en/helpers/SpotLightHelper"
  181. },
  182. "Lights": {
  183. "AmbientLight": "api/en/lights/AmbientLight",
  184. "AmbientLightProbe": "api/en/lights/AmbientLightProbe",
  185. "DirectionalLight": "api/en/lights/DirectionalLight",
  186. "HemisphereLight": "api/en/lights/HemisphereLight",
  187. "HemisphereLightProbe": "api/en/lights/HemisphereLightProbe",
  188. "Light": "api/en/lights/Light",
  189. "LightProbe": "api/en/lights/LightProbe",
  190. "PointLight": "api/en/lights/PointLight",
  191. "RectAreaLight": "api/en/lights/RectAreaLight",
  192. "SpotLight": "api/en/lights/SpotLight"
  193. },
  194. "Lights / Shadows": {
  195. "LightShadow": "api/en/lights/shadows/LightShadow",
  196. "PointLightShadow": "api/en/lights/shadows/PointLightShadow",
  197. "DirectionalLightShadow": "api/en/lights/shadows/DirectionalLightShadow",
  198. "SpotLightShadow": "api/en/lights/shadows/SpotLightShadow"
  199. },
  200. "Loaders": {
  201. "AnimationLoader": "api/en/loaders/AnimationLoader",
  202. "AudioLoader": "api/en/loaders/AudioLoader",
  203. "BufferGeometryLoader": "api/en/loaders/BufferGeometryLoader",
  204. "Cache": "api/en/loaders/Cache",
  205. "CompressedTextureLoader": "api/en/loaders/CompressedTextureLoader",
  206. "CubeTextureLoader": "api/en/loaders/CubeTextureLoader",
  207. "DataTextureLoader": "api/en/loaders/DataTextureLoader",
  208. "FileLoader": "api/en/loaders/FileLoader",
  209. "FontLoader": "api/en/loaders/FontLoader",
  210. "ImageBitmapLoader": "api/en/loaders/ImageBitmapLoader",
  211. "ImageLoader": "api/en/loaders/ImageLoader",
  212. "Loader": "api/en/loaders/Loader",
  213. "LoaderUtils": "api/en/loaders/LoaderUtils",
  214. "MaterialLoader": "api/en/loaders/MaterialLoader",
  215. "ObjectLoader": "api/en/loaders/ObjectLoader",
  216. "TextureLoader": "api/en/loaders/TextureLoader"
  217. },
  218. "Loaders / Managers": {
  219. "DefaultLoadingManager": "api/en/loaders/managers/DefaultLoadingManager",
  220. "LoadingManager": "api/en/loaders/managers/LoadingManager"
  221. },
  222. "Materials": {
  223. "LineBasicMaterial": "api/en/materials/LineBasicMaterial",
  224. "LineDashedMaterial": "api/en/materials/LineDashedMaterial",
  225. "Material": "api/en/materials/Material",
  226. "MeshBasicMaterial": "api/en/materials/MeshBasicMaterial",
  227. "MeshDepthMaterial": "api/en/materials/MeshDepthMaterial",
  228. "MeshDistanceMaterial": "api/en/materials/MeshDistanceMaterial",
  229. "MeshLambertMaterial": "api/en/materials/MeshLambertMaterial",
  230. "MeshMatcapMaterial": "api/en/materials/MeshMatcapMaterial",
  231. "MeshNormalMaterial": "api/en/materials/MeshNormalMaterial",
  232. "MeshPhongMaterial": "api/en/materials/MeshPhongMaterial",
  233. "MeshPhysicalMaterial": "api/en/materials/MeshPhysicalMaterial",
  234. "MeshStandardMaterial": "api/en/materials/MeshStandardMaterial",
  235. "MeshToonMaterial": "api/en/materials/MeshToonMaterial",
  236. "PointsMaterial": "api/en/materials/PointsMaterial",
  237. "RawShaderMaterial": "api/en/materials/RawShaderMaterial",
  238. "ShaderMaterial": "api/en/materials/ShaderMaterial",
  239. "ShadowMaterial": "api/en/materials/ShadowMaterial",
  240. "SpriteMaterial": "api/en/materials/SpriteMaterial"
  241. },
  242. "Math": {
  243. "Box2": "api/en/math/Box2",
  244. "Box3": "api/en/math/Box3",
  245. "Color": "api/en/math/Color",
  246. "Cylindrical": "api/en/math/Cylindrical",
  247. "Euler": "api/en/math/Euler",
  248. "Frustum": "api/en/math/Frustum",
  249. "Interpolant": "api/en/math/Interpolant",
  250. "Line3": "api/en/math/Line3",
  251. "MathUtils": "api/en/math/MathUtils",
  252. "Matrix3": "api/en/math/Matrix3",
  253. "Matrix4": "api/en/math/Matrix4",
  254. "Plane": "api/en/math/Plane",
  255. "Quaternion": "api/en/math/Quaternion",
  256. "Ray": "api/en/math/Ray",
  257. "Sphere": "api/en/math/Sphere",
  258. "Spherical": "api/en/math/Spherical",
  259. "SphericalHarmonics3": "api/en/math/SphericalHarmonics3",
  260. "Triangle": "api/en/math/Triangle",
  261. "Vector2": "api/en/math/Vector2",
  262. "Vector3": "api/en/math/Vector3",
  263. "Vector4": "api/en/math/Vector4"
  264. },
  265. "Math / Interpolants": {
  266. "CubicInterpolant": "api/en/math/interpolants/CubicInterpolant",
  267. "DiscreteInterpolant": "api/en/math/interpolants/DiscreteInterpolant",
  268. "LinearInterpolant": "api/en/math/interpolants/LinearInterpolant",
  269. "QuaternionLinearInterpolant": "api/en/math/interpolants/QuaternionLinearInterpolant"
  270. },
  271. "Objects": {
  272. "Bone": "api/en/objects/Bone",
  273. "Group": "api/en/objects/Group",
  274. "InstancedMesh": "api/en/objects/InstancedMesh",
  275. "Line": "api/en/objects/Line",
  276. "LineLoop": "api/en/objects/LineLoop",
  277. "LineSegments": "api/en/objects/LineSegments",
  278. "LOD": "api/en/objects/LOD",
  279. "Mesh": "api/en/objects/Mesh",
  280. "Points": "api/en/objects/Points",
  281. "Skeleton": "api/en/objects/Skeleton",
  282. "SkinnedMesh": "api/en/objects/SkinnedMesh",
  283. "Sprite": "api/en/objects/Sprite"
  284. },
  285. "Renderers": {
  286. "WebGLMultisampleRenderTarget": "api/en/renderers/WebGLMultisampleRenderTarget",
  287. "WebGLRenderer": "api/en/renderers/WebGLRenderer",
  288. "WebGL1Renderer": "api/en/renderers/WebGL1Renderer",
  289. "WebGLRenderTarget": "api/en/renderers/WebGLRenderTarget",
  290. "WebGLCubeRenderTarget": "api/en/renderers/WebGLCubeRenderTarget"
  291. },
  292. "Renderers / Shaders": {
  293. "ShaderChunk": "api/en/renderers/shaders/ShaderChunk",
  294. "ShaderLib": "api/en/renderers/shaders/ShaderLib",
  295. "UniformsLib": "api/en/renderers/shaders/UniformsLib",
  296. "UniformsUtils": "api/en/renderers/shaders/UniformsUtils"
  297. },
  298. "Renderers / WebXR": {
  299. "WebXRManager": "api/en/renderers/webxr/WebXRManager"
  300. },
  301. "Scenes": {
  302. "Fog": "api/en/scenes/Fog",
  303. "FogExp2": "api/en/scenes/FogExp2",
  304. "Scene": "api/en/scenes/Scene"
  305. },
  306. "Textures": {
  307. "CanvasTexture": "api/en/textures/CanvasTexture",
  308. "CompressedTexture": "api/en/textures/CompressedTexture",
  309. "CubeTexture": "api/en/textures/CubeTexture",
  310. "DataTexture": "api/en/textures/DataTexture",
  311. "DataTexture2DArray": "api/en/textures/DataTexture2DArray",
  312. "DataTexture3D": "api/en/textures/DataTexture3D",
  313. "DepthTexture": "api/en/textures/DepthTexture",
  314. "Texture": "api/en/textures/Texture",
  315. "VideoTexture": "api/en/textures/VideoTexture"
  316. }
  317. },
  318. "Examples": {
  319. "Animations": {
  320. "CCDIKSolver": "examples/en/animations/CCDIKSolver",
  321. "MMDAnimationHelper": "examples/en/animations/MMDAnimationHelper",
  322. "MMDPhysics": "examples/en/animations/MMDPhysics"
  323. },
  324. "Controls": {
  325. "DeviceOrientationControls": "examples/en/controls/DeviceOrientationControls",
  326. "DragControls": "examples/en/controls/DragControls",
  327. "FirstPersonControls": "examples/en/controls/FirstPersonControls",
  328. "FlyControls": "examples/en/controls/FlyControls",
  329. "OrbitControls": "examples/en/controls/OrbitControls",
  330. "PointerLockControls": "examples/en/controls/PointerLockControls",
  331. "TrackballControls": "examples/en/controls/TrackballControls",
  332. "TransformControls": "examples/en/controls/TransformControls"
  333. },
  334. "Geometries": {
  335. "ConvexBufferGeometry": "examples/en/geometries/ConvexBufferGeometry",
  336. "ConvexGeometry": "examples/en/geometries/ConvexGeometry",
  337. "DecalGeometry": "examples/en/geometries/DecalGeometry"
  338. },
  339. "Helpers": {
  340. "FaceNormalsHelper": "examples/en/helpers/FaceNormalsHelper",
  341. "LightProbeHelper": "examples/en/helpers/LightProbeHelper",
  342. "PositionalAudioHelper": "examples/en/helpers/PositionalAudioHelper",
  343. "RectAreaLightHelper": "examples/en/helpers/RectAreaLightHelper",
  344. "VertexNormalsHelper": "examples/en/helpers/VertexNormalsHelper",
  345. "VertexTangentsHelper": "examples/en/helpers/VertexTangentsHelper"
  346. },
  347. "Lights": {
  348. "LightProbeGenerator": "examples/en/lights/LightProbeGenerator"
  349. },
  350. "Loaders": {
  351. "3DMLoader": "examples/en/loaders/3DMLoader",
  352. "BasisTextureLoader": "examples/en/loaders/BasisTextureLoader",
  353. "DRACOLoader": "examples/en/loaders/DRACOLoader",
  354. "GLTFLoader": "examples/en/loaders/GLTFLoader",
  355. "MMDLoader": "examples/en/loaders/MMDLoader",
  356. "MTLLoader": "examples/en/loaders/MTLLoader",
  357. "OBJLoader": "examples/en/loaders/OBJLoader",
  358. "OBJLoader2": "examples/en/loaders/OBJLoader2",
  359. "OBJLoader2Parallel": "examples/en/loaders/OBJLoader2Parallel",
  360. "PCDLoader": "examples/en/loaders/PCDLoader",
  361. "PDBLoader": "examples/en/loaders/PDBLoader",
  362. "PRWMLoader": "examples/en/loaders/PRWMLoader",
  363. "SVGLoader": "examples/en/loaders/SVGLoader",
  364. "TGALoader": "examples/en/loaders/TGALoader"
  365. },
  366. "Objects": {
  367. "Lensflare": "examples/en/objects/Lensflare",
  368. },
  369. "Post-Processing": {
  370. "EffectComposer": "examples/en/postprocessing/EffectComposer"
  371. },
  372. "Exporters": {
  373. "GLTFExporter": "examples/en/exporters/GLTFExporter",
  374. "PLYExporter": "examples/en/exporters/PLYExporter",
  375. "ColladaExporter": "examples/en/exporters/ColladaExporter"
  376. },
  377. "Math": {
  378. "LookupTable": "examples/en/math/Lut",
  379. "MeshSurfaceSampler": "examples/en/math/MeshSurfaceSampler",
  380. },
  381. "ConvexHull": {
  382. "Face": "examples/en/math/convexhull/Face",
  383. "HalfEdge": "examples/en/math/convexhull/HalfEdge",
  384. "ConvexHull": "examples/en/math/convexhull/ConvexHull",
  385. "VertexNode": "examples/en/math/convexhull/VertexNode",
  386. "VertexList": "examples/en/math/convexhull/VertexList"
  387. },
  388. "Renderers": {
  389. "CSS2DRenderer": "examples/en/renderers/CSS2DRenderer",
  390. "CSS3DRenderer": "examples/en/renderers/CSS3DRenderer",
  391. "SVGRenderer": "examples/en/renderers/SVGRenderer"
  392. },
  393. "Utils": {
  394. "BufferGeometryUtils": "examples/en/utils/BufferGeometryUtils",
  395. "SceneUtils": "examples/en/utils/SceneUtils",
  396. "SkeletonUtils": "examples/en/utils/SkeletonUtils"
  397. }
  398. },
  399. "Developer Reference": {
  400. "Polyfills": {
  401. "Polyfills": "api/en/Polyfills"
  402. },
  403. "WebGLRenderer": {
  404. "WebGLProgram": "api/en/renderers/webgl/WebGLProgram",
  405. "WebGLShader": "api/en/renderers/webgl/WebGLShader",
  406. "WebGLState": "api/en/renderers/webgl/WebGLState"
  407. }
  408. }
  409. },
  410. "ar": {
  411. "الكتيب": {
  412. "البدء": {
  413. "إنشاء مشهد": "manual/ar/introduction/Creating-a-scene",
  414. "التثبيت": "manual/ar/introduction/Installation",
  415. "دعم المتصفح": "manual/ar/introduction/Browser-support",
  416. "فحص توافق WebGL": "manual/ar/introduction/WebGL-compatibility-check",
  417. "كيف تدير الأشياء محليًا": "manual/ar/introduction/How-to-run-things-locally",
  418. "إعدادات Typescript": "manual/ar/introduction/Typescript-setup",
  419. "رسم خطوط": "manual/ar/introduction/Drawing-lines",
  420. "إنشاء نص": "manual/ar/introduction/Creating-text",
  421. "تحميل نماذج ثلاثية الأبعاد": "manual/ar/introduction/Loading-3D-models",
  422. "الأسئلة الشائعة": "manual/ar/introduction/FAQ",
  423. "روابط مفيدة": "manual/ar/introduction/Useful-links"
  424. },
  425. "الخطوات التالية": {
  426. "كيفية تحديث الأشياء": "manual/ar/introduction/How-to-update-things",
  427. "كيفية التخلص من الأشياء": "manual/ar/introduction/How-to-dispose-of-objects",
  428. "كيفية إنشاء محتوى VR": "manual/ar/introduction/How-to-create-VR-content",
  429. "كيفية استخدام المعالجة اللاحقة (post-processing)": "manual/ar/introduction/How-to-use-post-processing",
  430. "تحولات المصفوفة (Matrix transformations)": "manual/ar/introduction/Matrix-transformations",
  431. "نظام الحركات": "manual/ar/introduction/Animation-system"
  432. },
  433. "أدوات البناء": {
  434. "الاختبار مع NPM": "manual/ar/buildTools/Testing-with-NPM"
  435. }
  436. },
  437. "المرجع": {
  438. "الحركات": {
  439. "AnimationAction": "api/ar/animation/AnimationAction",
  440. "AnimationClip": "api/ar/animation/AnimationClip",
  441. "AnimationMixer": "api/ar/animation/AnimationMixer",
  442. "AnimationObjectGroup": "api/ar/animation/AnimationObjectGroup",
  443. "AnimationUtils": "api/ar/animation/AnimationUtils",
  444. "KeyframeTrack": "api/ar/animation/KeyframeTrack",
  445. "PropertyBinding": "api/ar/animation/PropertyBinding",
  446. "PropertyMixer": "api/ar/animation/PropertyMixer"
  447. },
  448. "الحركات / Tracks": {
  449. "BooleanKeyframeTrack": "api/ar/animation/tracks/BooleanKeyframeTrack",
  450. "ColorKeyframeTrack": "api/ar/animation/tracks/ColorKeyframeTrack",
  451. "NumberKeyframeTrack": "api/ar/animation/tracks/NumberKeyframeTrack",
  452. "QuaternionKeyframeTrack": "api/ar/animation/tracks/QuaternionKeyframeTrack",
  453. "StringKeyframeTrack": "api/ar/animation/tracks/StringKeyframeTrack",
  454. "VectorKeyframeTrack": "api/ar/animation/tracks/VectorKeyframeTrack"
  455. },
  456. "Audio": {
  457. "Audio": "api/ar/audio/Audio",
  458. "AudioAnalyser": "api/ar/audio/AudioAnalyser",
  459. "AudioContext": "api/ar/audio/AudioContext",
  460. "AudioListener": "api/ar/audio/AudioListener",
  461. "PositionalAudio": "api/ar/audio/PositionalAudio"
  462. }
  463. }
  464. },
  465. "zh": {
  466. "手册": {
  467. "起步": {
  468. "创建一个场景": "manual/zh/introduction/Creating-a-scene",
  469. "安装": "manual/zh/introduction/Installation",
  470. "浏览器支持": "manual/zh/introduction/Browser-support",
  471. "WebGL兼容性检查": "manual/zh/introduction/WebGL-compatibility-check",
  472. "如何在本地运行Three.js": "manual/zh/introduction/How-to-run-things-locally",
  473. "Typescript设置": "manual/zh/introduction/Typescript-setup",
  474. "画线": "manual/zh/introduction/Drawing-lines",
  475. "创建文字": "manual/zh/introduction/Creating-text",
  476. "载入3D模型": "manual/zh/introduction/Loading-3D-models",
  477. "常见问题": "manual/zh/introduction/FAQ",
  478. "一些有用的链接": "manual/zh/introduction/Useful-links"
  479. },
  480. "进阶": {
  481. "如何更新场景": "manual/zh/introduction/How-to-update-things",
  482. "如何废置对象": "manual/zh/introduction/How-to-dispose-of-objects",
  483. "如何创建VR内容": "manual/zh/introduction/How-to-create-VR-content",
  484. "如何使用后期处理": "manual/zh/introduction/How-to-use-post-processing",
  485. "矩阵变换": "manual/zh/introduction/Matrix-transformations",
  486. "动画系统": "manual/zh/introduction/Animation-system"
  487. },
  488. "构建工具": {
  489. "使用NPM进行测试": "manual/zh/buildTools/Testing-with-NPM"
  490. }
  491. },
  492. "参考": {
  493. "动画": {
  494. "AnimationAction": "api/zh/animation/AnimationAction",
  495. "AnimationClip": "api/zh/animation/AnimationClip",
  496. "AnimationMixer": "api/zh/animation/AnimationMixer",
  497. "AnimationObjectGroup": "api/zh/animation/AnimationObjectGroup",
  498. "AnimationUtils": "api/zh/animation/AnimationUtils",
  499. "KeyframeTrack": "api/zh/animation/KeyframeTrack",
  500. "PropertyBinding": "api/zh/animation/PropertyBinding",
  501. "PropertyMixer": "api/zh/animation/PropertyMixer"
  502. },
  503. "动画 / 轨道": {
  504. "BooleanKeyframeTrack": "api/zh/animation/tracks/BooleanKeyframeTrack",
  505. "ColorKeyframeTrack": "api/zh/animation/tracks/ColorKeyframeTrack",
  506. "NumberKeyframeTrack": "api/zh/animation/tracks/NumberKeyframeTrack",
  507. "QuaternionKeyframeTrack": "api/zh/animation/tracks/QuaternionKeyframeTrack",
  508. "StringKeyframeTrack": "api/zh/animation/tracks/StringKeyframeTrack",
  509. "VectorKeyframeTrack": "api/zh/animation/tracks/VectorKeyframeTrack"
  510. },
  511. "音频": {
  512. "Audio": "api/zh/audio/Audio",
  513. "AudioAnalyser": "api/zh/audio/AudioAnalyser",
  514. "AudioContext": "api/zh/audio/AudioContext",
  515. "AudioListener": "api/zh/audio/AudioListener",
  516. "PositionalAudio": "api/zh/audio/PositionalAudio"
  517. },
  518. "摄像机": {
  519. "ArrayCamera": "api/zh/cameras/ArrayCamera",
  520. "Camera": "api/zh/cameras/Camera",
  521. "CubeCamera": "api/zh/cameras/CubeCamera",
  522. "OrthographicCamera": "api/zh/cameras/OrthographicCamera",
  523. "PerspectiveCamera": "api/zh/cameras/PerspectiveCamera",
  524. "StereoCamera": "api/zh/cameras/StereoCamera"
  525. },
  526. "常量": {
  527. "Animation": "api/zh/constants/Animation",
  528. "Core": "api/zh/constants/Core",
  529. "CustomBlendingEquation": "api/zh/constants/CustomBlendingEquations",
  530. "Materials": "api/zh/constants/Materials",
  531. "Renderer": "api/zh/constants/Renderer",
  532. "Textures": "api/zh/constants/Textures"
  533. },
  534. "核心": {
  535. "BufferAttribute": "api/zh/core/BufferAttribute",
  536. "BufferGeometry": "api/zh/core/BufferGeometry",
  537. "Clock": "api/zh/core/Clock",
  538. "DirectGeometry": "api/zh/core/DirectGeometry",
  539. "EventDispatcher": "api/zh/core/EventDispatcher",
  540. "Face3": "api/zh/core/Face3",
  541. "Geometry": "api/zh/core/Geometry",
  542. "GLBufferAttribute": "api/zh/core/GLBufferAttribute",
  543. "InstancedBufferAttribute": "api/zh/core/InstancedBufferAttribute",
  544. "InstancedBufferGeometry": "api/zh/core/InstancedBufferGeometry",
  545. "InstancedInterleavedBuffer": "api/zh/core/InstancedInterleavedBuffer",
  546. "InterleavedBuffer": "api/zh/core/InterleavedBuffer",
  547. "InterleavedBufferAttribute": "api/zh/core/InterleavedBufferAttribute",
  548. "Layers": "api/zh/core/Layers",
  549. "Object3D": "api/zh/core/Object3D",
  550. "Raycaster": "api/zh/core/Raycaster",
  551. "Uniform": "api/zh/core/Uniform"
  552. },
  553. "核心 / BufferAttributes": {
  554. "BufferAttribute Types": "api/zh/core/bufferAttributeTypes/BufferAttributeTypes"
  555. },
  556. "附件": {
  557. "Earcut": "api/zh/extras/Earcut",
  558. "ImageUtils": "api/zh/extras/ImageUtils",
  559. "PMREMGenerator": "api/zh/extras/PMREMGenerator",
  560. "ShapeUtils": "api/zh/extras/ShapeUtils"
  561. },
  562. "附件 / 核心": {
  563. "Curve": "api/zh/extras/core/Curve",
  564. "CurvePath": "api/zh/extras/core/CurvePath",
  565. "Font": "api/zh/extras/core/Font",
  566. "Interpolations": "api/zh/extras/core/Interpolations",
  567. "Path": "api/zh/extras/core/Path",
  568. "Shape": "api/zh/extras/core/Shape",
  569. "ShapePath": "api/zh/extras/core/ShapePath"
  570. },
  571. "附件 / 曲线": {
  572. "ArcCurve": "api/zh/extras/curves/ArcCurve",
  573. "CatmullRomCurve3": "api/zh/extras/curves/CatmullRomCurve3",
  574. "CubicBezierCurve": "api/zh/extras/curves/CubicBezierCurve",
  575. "CubicBezierCurve3": "api/zh/extras/curves/CubicBezierCurve3",
  576. "EllipseCurve": "api/zh/extras/curves/EllipseCurve",
  577. "LineCurve": "api/zh/extras/curves/LineCurve",
  578. "LineCurve3": "api/zh/extras/curves/LineCurve3",
  579. "QuadraticBezierCurve": "api/zh/extras/curves/QuadraticBezierCurve",
  580. "QuadraticBezierCurve3": "api/zh/extras/curves/QuadraticBezierCurve3",
  581. "SplineCurve": "api/zh/extras/curves/SplineCurve"
  582. },
  583. "附件 / 物体": {
  584. "ImmediateRenderObject": "api/zh/extras/objects/ImmediateRenderObject",
  585. },
  586. "几何体": {
  587. "BoxBufferGeometry": "api/zh/geometries/BoxBufferGeometry",
  588. "BoxGeometry": "api/zh/geometries/BoxGeometry",
  589. "CircleBufferGeometry": "api/zh/geometries/CircleBufferGeometry",
  590. "CircleGeometry": "api/zh/geometries/CircleGeometry",
  591. "ConeBufferGeometry": "api/zh/geometries/ConeBufferGeometry",
  592. "ConeGeometry": "api/zh/geometries/ConeGeometry",
  593. "CylinderBufferGeometry": "api/zh/geometries/CylinderBufferGeometry",
  594. "CylinderGeometry": "api/zh/geometries/CylinderGeometry",
  595. "DodecahedronBufferGeometry": "api/zh/geometries/DodecahedronBufferGeometry",
  596. "DodecahedronGeometry": "api/zh/geometries/DodecahedronGeometry",
  597. "EdgesGeometry": "api/zh/geometries/EdgesGeometry",
  598. "ExtrudeBufferGeometry": "api/zh/geometries/ExtrudeBufferGeometry",
  599. "ExtrudeGeometry": "api/zh/geometries/ExtrudeGeometry",
  600. "IcosahedronBufferGeometry": "api/zh/geometries/IcosahedronBufferGeometry",
  601. "IcosahedronGeometry": "api/zh/geometries/IcosahedronGeometry",
  602. "LatheBufferGeometry": "api/zh/geometries/LatheBufferGeometry",
  603. "LatheGeometry": "api/zh/geometries/LatheGeometry",
  604. "OctahedronBufferGeometry": "api/zh/geometries/OctahedronBufferGeometry",
  605. "OctahedronGeometry": "api/zh/geometries/OctahedronGeometry",
  606. "ParametricBufferGeometry": "api/zh/geometries/ParametricBufferGeometry",
  607. "ParametricGeometry": "api/zh/geometries/ParametricGeometry",
  608. "PlaneBufferGeometry": "api/zh/geometries/PlaneBufferGeometry",
  609. "PlaneGeometry": "api/zh/geometries/PlaneGeometry",
  610. "PolyhedronBufferGeometry": "api/zh/geometries/PolyhedronBufferGeometry",
  611. "PolyhedronGeometry": "api/zh/geometries/PolyhedronGeometry",
  612. "RingBufferGeometry": "api/zh/geometries/RingBufferGeometry",
  613. "RingGeometry": "api/zh/geometries/RingGeometry",
  614. "ShapeBufferGeometry": "api/zh/geometries/ShapeBufferGeometry",
  615. "ShapeGeometry": "api/zh/geometries/ShapeGeometry",
  616. "SphereBufferGeometry": "api/zh/geometries/SphereBufferGeometry",
  617. "SphereGeometry": "api/zh/geometries/SphereGeometry",
  618. "TetrahedronBufferGeometry": "api/zh/geometries/TetrahedronBufferGeometry",
  619. "TetrahedronGeometry": "api/zh/geometries/TetrahedronGeometry",
  620. "TextBufferGeometry": "api/zh/geometries/TextBufferGeometry",
  621. "TextGeometry": "api/zh/geometries/TextGeometry",
  622. "TorusBufferGeometry": "api/zh/geometries/TorusBufferGeometry",
  623. "TorusGeometry": "api/zh/geometries/TorusGeometry",
  624. "TorusKnotBufferGeometry": "api/zh/geometries/TorusKnotBufferGeometry",
  625. "TorusKnotGeometry": "api/zh/geometries/TorusKnotGeometry",
  626. "TubeBufferGeometry": "api/zh/geometries/TubeBufferGeometry",
  627. "TubeGeometry": "api/zh/geometries/TubeGeometry",
  628. "WireframeGeometry": "api/zh/geometries/WireframeGeometry"
  629. },
  630. "辅助对象": {
  631. "ArrowHelper": "api/zh/helpers/ArrowHelper",
  632. "AxesHelper": "api/zh/helpers/AxesHelper",
  633. "BoxHelper": "api/zh/helpers/BoxHelper",
  634. "Box3Helper": "api/zh/helpers/Box3Helper",
  635. "CameraHelper": "api/zh/helpers/CameraHelper",
  636. "DirectionalLightHelper": "api/zh/helpers/DirectionalLightHelper",
  637. "GridHelper": "api/zh/helpers/GridHelper",
  638. "PolarGridHelper": "api/zh/helpers/PolarGridHelper",
  639. "HemisphereLightHelper": "api/zh/helpers/HemisphereLightHelper",
  640. "PlaneHelper": "api/zh/helpers/PlaneHelper",
  641. "PointLightHelper": "api/zh/helpers/PointLightHelper",
  642. "SkeletonHelper": "api/zh/helpers/SkeletonHelper",
  643. "SpotLightHelper": "api/zh/helpers/SpotLightHelper"
  644. },
  645. "灯光": {
  646. "AmbientLight": "api/zh/lights/AmbientLight",
  647. "AmbientLightProbe": "api/zh/lights/AmbientLightProbe",
  648. "DirectionalLight": "api/zh/lights/DirectionalLight",
  649. "HemisphereLight": "api/zh/lights/HemisphereLight",
  650. "HemisphereLightProbe": "api/zh/lights/HemisphereLightProbe",
  651. "Light": "api/zh/lights/Light",
  652. "LightProbe": "api/zh/lights/LightProbe",
  653. "PointLight": "api/zh/lights/PointLight",
  654. "RectAreaLight": "api/zh/lights/RectAreaLight",
  655. "SpotLight": "api/zh/lights/SpotLight"
  656. },
  657. "灯光 / 阴影": {
  658. "LightShadow": "api/zh/lights/shadows/LightShadow",
  659. "PointLightShadow": "api/zh/lights/shadows/PointLightShadow",
  660. "DirectionalLightShadow": "api/zh/lights/shadows/DirectionalLightShadow",
  661. "SpotLightShadow": "api/zh/lights/shadows/SpotLightShadow"
  662. },
  663. "加载器": {
  664. "AnimationLoader": "api/zh/loaders/AnimationLoader",
  665. "AudioLoader": "api/zh/loaders/AudioLoader",
  666. "BufferGeometryLoader": "api/zh/loaders/BufferGeometryLoader",
  667. "Cache": "api/zh/loaders/Cache",
  668. "CompressedTextureLoader": "api/zh/loaders/CompressedTextureLoader",
  669. "CubeTextureLoader": "api/zh/loaders/CubeTextureLoader",
  670. "DataTextureLoader": "api/zh/loaders/DataTextureLoader",
  671. "FileLoader": "api/zh/loaders/FileLoader",
  672. "FontLoader": "api/zh/loaders/FontLoader",
  673. "ImageBitmapLoader": "api/zh/loaders/ImageBitmapLoader",
  674. "ImageLoader": "api/zh/loaders/ImageLoader",
  675. "Loader": "api/zh/loaders/Loader",
  676. "LoaderUtils": "api/zh/loaders/LoaderUtils",
  677. "MaterialLoader": "api/zh/loaders/MaterialLoader",
  678. "ObjectLoader": "api/zh/loaders/ObjectLoader",
  679. "TextureLoader": "api/zh/loaders/TextureLoader"
  680. },
  681. "加载器 / 管理器": {
  682. "DefaultLoadingManager": "api/zh/loaders/managers/DefaultLoadingManager",
  683. "LoadingManager": "api/zh/loaders/managers/LoadingManager"
  684. },
  685. "材质": {
  686. "LineBasicMaterial": "api/zh/materials/LineBasicMaterial",
  687. "LineDashedMaterial": "api/zh/materials/LineDashedMaterial",
  688. "Material": "api/zh/materials/Material",
  689. "MeshBasicMaterial": "api/zh/materials/MeshBasicMaterial",
  690. "MeshDepthMaterial": "api/zh/materials/MeshDepthMaterial",
  691. "MeshDistanceMaterial": "api/zh/materials/MeshDistanceMaterial",
  692. "MeshLambertMaterial": "api/zh/materials/MeshLambertMaterial",
  693. "MeshMatcapMaterial": "api/zh/materials/MeshMatcapMaterial",
  694. "MeshNormalMaterial": "api/zh/materials/MeshNormalMaterial",
  695. "MeshPhongMaterial": "api/zh/materials/MeshPhongMaterial",
  696. "MeshPhysicalMaterial": "api/zh/materials/MeshPhysicalMaterial",
  697. "MeshStandardMaterial": "api/zh/materials/MeshStandardMaterial",
  698. "MeshToonMaterial": "api/zh/materials/MeshToonMaterial",
  699. "PointsMaterial": "api/zh/materials/PointsMaterial",
  700. "RawShaderMaterial": "api/zh/materials/RawShaderMaterial",
  701. "ShaderMaterial": "api/zh/materials/ShaderMaterial",
  702. "ShadowMaterial": "api/zh/materials/ShadowMaterial",
  703. "SpriteMaterial": "api/zh/materials/SpriteMaterial"
  704. },
  705. "数学库": {
  706. "Box2": "api/zh/math/Box2",
  707. "Box3": "api/zh/math/Box3",
  708. "Color": "api/zh/math/Color",
  709. "Cylindrical": "api/zh/math/Cylindrical",
  710. "Euler": "api/zh/math/Euler",
  711. "Frustum": "api/zh/math/Frustum",
  712. "Interpolant": "api/zh/math/Interpolant",
  713. "Line3": "api/zh/math/Line3",
  714. "MathUtils": "api/zh/math/MathUtils",
  715. "Matrix3": "api/zh/math/Matrix3",
  716. "Matrix4": "api/zh/math/Matrix4",
  717. "Plane": "api/zh/math/Plane",
  718. "Quaternion": "api/zh/math/Quaternion",
  719. "Ray": "api/zh/math/Ray",
  720. "Sphere": "api/zh/math/Sphere",
  721. "Spherical": "api/zh/math/Spherical",
  722. "SphericalHarmonics3": "api/zh/math/SphericalHarmonics3",
  723. "Triangle": "api/zh/math/Triangle",
  724. "Vector2": "api/zh/math/Vector2",
  725. "Vector3": "api/zh/math/Vector3",
  726. "Vector4": "api/zh/math/Vector4"
  727. },
  728. "数学库 / 插值": {
  729. "CubicInterpolant": "api/zh/math/interpolants/CubicInterpolant",
  730. "DiscreteInterpolant": "api/zh/math/interpolants/DiscreteInterpolant",
  731. "LinearInterpolant": "api/zh/math/interpolants/LinearInterpolant",
  732. "QuaternionLinearInterpolant": "api/zh/math/interpolants/QuaternionLinearInterpolant"
  733. },
  734. "物体": {
  735. "Bone": "api/zh/objects/Bone",
  736. "Group": "api/zh/objects/Group",
  737. "InstancedMesh": "api/zh/objects/InstancedMesh",
  738. "Line": "api/zh/objects/Line",
  739. "LineLoop": "api/zh/objects/LineLoop",
  740. "LineSegments": "api/zh/objects/LineSegments",
  741. "LOD": "api/zh/objects/LOD",
  742. "Mesh": "api/zh/objects/Mesh",
  743. "Points": "api/zh/objects/Points",
  744. "Skeleton": "api/zh/objects/Skeleton",
  745. "SkinnedMesh": "api/zh/objects/SkinnedMesh",
  746. "Sprite": "api/zh/objects/Sprite"
  747. },
  748. "渲染器": {
  749. "WebGLMultisampleRenderTarget": "api/zh/renderers/WebGLMultisampleRenderTarget",
  750. "WebGLRenderer": "api/zh/renderers/WebGLRenderer",
  751. "WebGL1Renderer": "api/zh/renderers/WebGL1Renderer",
  752. "WebGLRenderTarget": "api/zh/renderers/WebGLRenderTarget",
  753. "WebGLCubeRenderTarget": "api/zh/renderers/WebGLCubeRenderTarget"
  754. },
  755. "渲染器 / 着色器": {
  756. "ShaderChunk": "api/zh/renderers/shaders/ShaderChunk",
  757. "ShaderLib": "api/zh/renderers/shaders/ShaderLib",
  758. "UniformsLib": "api/zh/renderers/shaders/UniformsLib",
  759. "UniformsUtils": "api/zh/renderers/shaders/UniformsUtils"
  760. },
  761. "渲染器 / WebXR": {
  762. "WebXRManager": "api/zh/renderers/webxr/WebXRManager"
  763. },
  764. "场景": {
  765. "Fog": "api/zh/scenes/Fog",
  766. "FogExp2": "api/zh/scenes/FogExp2",
  767. "Scene": "api/zh/scenes/Scene"
  768. },
  769. "纹理贴图": {
  770. "CanvasTexture": "api/zh/textures/CanvasTexture",
  771. "CompressedTexture": "api/zh/textures/CompressedTexture",
  772. "CubeTexture": "api/zh/textures/CubeTexture",
  773. "DataTexture": "api/zh/textures/DataTexture",
  774. "DataTexture2DArray": "api/zh/textures/DataTexture2DArray",
  775. "DataTexture3D": "api/zh/textures/DataTexture3D",
  776. "DepthTexture": "api/zh/textures/DepthTexture",
  777. "Texture": "api/zh/textures/Texture",
  778. "VideoTexture": "api/zh/textures/VideoTexture"
  779. }
  780. },
  781. "示例": {
  782. "动画": {
  783. "CCDIKSolver": "examples/zh/animations/CCDIKSolver",
  784. "MMDAnimationHelper": "examples/zh/animations/MMDAnimationHelper",
  785. "MMDPhysics": "examples/zh/animations/MMDPhysics"
  786. },
  787. "控制": {
  788. "DeviceOrientationControls": "examples/zh/controls/DeviceOrientationControls",
  789. "DragControls": "examples/zh/controls/DragControls",
  790. "FirstPersonControls": "examples/zh/controls/FirstPersonControls",
  791. "FlyControls": "examples/zh/controls/FlyControls",
  792. "OrbitControls": "examples/zh/controls/OrbitControls",
  793. "PointerLockControls": "examples/zh/controls/PointerLockControls",
  794. "TrackballControls": "examples/zh/controls/TrackballControls",
  795. "TransformControls": "examples/zh/controls/TransformControls"
  796. },
  797. "几何体": {
  798. "ConvexBufferGeometry": "examples/zh/geometries/ConvexBufferGeometry",
  799. "ConvexGeometry": "examples/zh/geometries/ConvexGeometry",
  800. "DecalGeometry": "examples/zh/geometries/DecalGeometry"
  801. },
  802. "辅助对象": {
  803. "FaceNormalsHelper": "examples/zh/helpers/FaceNormalsHelper",
  804. "LightProbeHelper": "examples/zh/helpers/LightProbeHelper",
  805. "PositionalAudioHelper": "examples/zh/helpers/PositionalAudioHelper",
  806. "RectAreaLightHelper": "examples/zh/helpers/RectAreaLightHelper",
  807. "VertexNormalsHelper": "examples/zh/helpers/VertexNormalsHelper",
  808. "VertexTangentsHelper": "examples/zh/helpers/VertexTangentsHelper"
  809. },
  810. "灯光": {
  811. "LightProbeGenerator": "examples/zh/lights/LightProbeGenerator"
  812. },
  813. "加载器": {
  814. "BasisTextureLoader": "examples/zh/loaders/BasisTextureLoader",
  815. "DRACOLoader": "examples/zh/loaders/DRACOLoader",
  816. "GLTFLoader": "examples/zh/loaders/GLTFLoader",
  817. "MMDLoader": "examples/zh/loaders/MMDLoader",
  818. "MTLLoader": "examples/zh/loaders/MTLLoader",
  819. "OBJLoader": "examples/zh/loaders/OBJLoader",
  820. "OBJLoader2": "examples/zh/loaders/OBJLoader2",
  821. "OBJLoader2Parallel": "examples/zh/loaders/OBJLoader2Parallel",
  822. "PCDLoader": "examples/zh/loaders/PCDLoader",
  823. "PDBLoader": "examples/zh/loaders/PDBLoader",
  824. "PRWMLoader": "examples/zh/loaders/PRWMLoader",
  825. "SVGLoader": "examples/zh/loaders/SVGLoader",
  826. "TGALoader": "examples/zh/loaders/TGALoader"
  827. },
  828. "物体": {
  829. "Lensflare": "examples/zh/objects/Lensflare",
  830. },
  831. "后期处理": {
  832. "EffectComposer": "examples/zh/postprocessing/EffectComposer"
  833. },
  834. "导出器": {
  835. "GLTFExporter": "examples/zh/exporters/GLTFExporter",
  836. "PLYExporter": "examples/zh/exporters/PLYExporter",
  837. "ColladaExporter": "examples/zh/exporters/ColladaExporter"
  838. },
  839. "数学库": {
  840. "LookupTable": "examples/zh/math/Lut",
  841. "MeshSurfaceSampler": "examples/zh/math/MeshSurfaceSampler",
  842. },
  843. "QuickHull": {
  844. "Face": "examples/zh/math/convexhull/Face",
  845. "HalfEdge": "examples/zh/math/convexhull/HalfEdge",
  846. "ConvexHull": "examples/zh/math/convexhull/ConvexHull",
  847. "VertexNode": "examples/zh/math/convexhull/VertexNode",
  848. "VertexList": "examples/zh/math/convexhull/VertexList"
  849. },
  850. "渲染器": {
  851. "CSS2DRenderer": "examples/zh/renderers/CSS2DRenderer",
  852. "CSS3DRenderer": "examples/zh/renderers/CSS3DRenderer",
  853. "SVGRenderer": "examples/zh/renderers/SVGRenderer"
  854. },
  855. "实用工具": {
  856. "BufferGeometryUtils": "examples/zh/utils/BufferGeometryUtils",
  857. "SceneUtils": "examples/zh/utils/SceneUtils",
  858. "SkeletonUtils": "examples/zh/utils/SkeletonUtils"
  859. }
  860. },
  861. "开发者参考": {
  862. "差异化支持": {
  863. "Polyfills": "api/zh/Polyfills"
  864. },
  865. "WebGL渲染器": {
  866. "WebGLProgram": "api/zh/renderers/webgl/WebGLProgram",
  867. "WebGLShader": "api/zh/renderers/webgl/WebGLShader",
  868. "WebGLState": "api/zh/renderers/webgl/WebGLState"
  869. }
  870. }
  871. }
  872. };