list.js 36 KB

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