list.js 37 KB

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