list.js 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854
  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. "Drawing lines": "manual/en/introduction/Drawing-lines",
  11. "Creating text": "manual/en/introduction/Creating-text",
  12. "Loading 3D models": "manual/en/introduction/Loading-3D-models",
  13. "Migration guide": "manual/en/introduction/Migration-guide",
  14. "Code style guide": "manual/en/introduction/Code-style-guide",
  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 create VR content": "manual/en/introduction/How-to-create-VR-content",
  21. "Matrix transformations": "manual/en/introduction/Matrix-transformations",
  22. "Animation system": "manual/en/introduction/Animation-system"
  23. },
  24. "Build Tools": {
  25. "Testing with NPM": "manual/en/buildTools/Testing-with-NPM"
  26. }
  27. },
  28. "Reference": {
  29. "Animation": {
  30. "AnimationAction": "api/en/animation/AnimationAction",
  31. "AnimationClip": "api/en/animation/AnimationClip",
  32. "AnimationMixer": "api/en/animation/AnimationMixer",
  33. "AnimationObjectGroup": "api/en/animation/AnimationObjectGroup",
  34. "AnimationUtils": "api/en/animation/AnimationUtils",
  35. "KeyframeTrack": "api/en/animation/KeyframeTrack",
  36. "PropertyBinding": "api/en/animation/PropertyBinding",
  37. "PropertyMixer": "api/en/animation/PropertyMixer"
  38. },
  39. "Animation / Tracks": {
  40. "BooleanKeyframeTrack": "api/en/animation/tracks/BooleanKeyframeTrack",
  41. "ColorKeyframeTrack": "api/en/animation/tracks/ColorKeyframeTrack",
  42. "NumberKeyframeTrack": "api/en/animation/tracks/NumberKeyframeTrack",
  43. "QuaternionKeyframeTrack": "api/en/animation/tracks/QuaternionKeyframeTrack",
  44. "StringKeyframeTrack": "api/en/animation/tracks/StringKeyframeTrack",
  45. "VectorKeyframeTrack": "api/en/animation/tracks/VectorKeyframeTrack"
  46. },
  47. "Audio": {
  48. "Audio": "api/en/audio/Audio",
  49. "AudioAnalyser": "api/en/audio/AudioAnalyser",
  50. "AudioContext": "api/en/audio/AudioContext",
  51. "AudioListener": "api/en/audio/AudioListener",
  52. "PositionalAudio": "api/en/audio/PositionalAudio"
  53. },
  54. "Cameras": {
  55. "ArrayCamera": "api/en/cameras/ArrayCamera",
  56. "Camera": "api/en/cameras/Camera",
  57. "CubeCamera": "api/en/cameras/CubeCamera",
  58. "OrthographicCamera": "api/en/cameras/OrthographicCamera",
  59. "PerspectiveCamera": "api/en/cameras/PerspectiveCamera",
  60. "StereoCamera": "api/en/cameras/StereoCamera"
  61. },
  62. "Constants": {
  63. "Animation": "api/en/constants/Animation",
  64. "Core": "api/en/constants/Core",
  65. "CustomBlendingEquation": "api/en/constants/CustomBlendingEquations",
  66. "DrawModes": "api/en/constants/DrawModes",
  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. "Deprecated": {
  93. "DeprecatedList": "api/en/deprecated/DeprecatedList"
  94. },
  95. "Extras": {
  96. "Earcut": "api/en/extras/Earcut",
  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. "FaceNormalsHelper": "api/en/helpers/FaceNormalsHelper",
  175. "GridHelper": "api/en/helpers/GridHelper",
  176. "PolarGridHelper": "api/en/helpers/PolarGridHelper",
  177. "HemisphereLightHelper": "api/en/helpers/HemisphereLightHelper",
  178. "PlaneHelper": "api/en/helpers/PlaneHelper",
  179. "PointLightHelper": "api/en/helpers/PointLightHelper",
  180. "RectAreaLightHelper": "api/en/helpers/RectAreaLightHelper",
  181. "SkeletonHelper": "api/en/helpers/SkeletonHelper",
  182. "SpotLightHelper": "api/en/helpers/SpotLightHelper",
  183. "VertexNormalsHelper": "api/en/helpers/VertexNormalsHelper"
  184. },
  185. "Lights": {
  186. "AmbientLight": "api/en/lights/AmbientLight",
  187. "DirectionalLight": "api/en/lights/DirectionalLight",
  188. "HemisphereLight": "api/en/lights/HemisphereLight",
  189. "Light": "api/en/lights/Light",
  190. "PointLight": "api/en/lights/PointLight",
  191. "RectAreaLight": "api/en/lights/RectAreaLight",
  192. "SpotLight": "api/en/lights/SpotLight"
  193. },
  194. "Lights / Shadows": {
  195. "DirectionalLightShadow": "api/en/lights/shadows/DirectionalLightShadow",
  196. "LightShadow": "api/en/lights/shadows/LightShadow",
  197. "SpotLightShadow": "api/en/lights/shadows/SpotLightShadow"
  198. },
  199. "Loaders": {
  200. "AnimationLoader": "api/en/loaders/AnimationLoader",
  201. "AudioLoader": "api/en/loaders/AudioLoader",
  202. "BufferGeometryLoader": "api/en/loaders/BufferGeometryLoader",
  203. "Cache": "api/en/loaders/Cache",
  204. "CompressedTextureLoader": "api/en/loaders/CompressedTextureLoader",
  205. "CubeTextureLoader": "api/en/loaders/CubeTextureLoader",
  206. "DataTextureLoader": "api/en/loaders/DataTextureLoader",
  207. "FileLoader": "api/en/loaders/FileLoader",
  208. "FontLoader": "api/en/loaders/FontLoader",
  209. "ImageBitmapLoader": "api/en/loaders/ImageBitmapLoader",
  210. "ImageLoader": "api/en/loaders/ImageLoader",
  211. "JSONLoader": "api/en/loaders/JSONLoader",
  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. "MeshLambertMaterial": "api/en/materials/MeshLambertMaterial",
  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. "Math": "api/en/math/Math",
  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. "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. "Line": "api/en/objects/Line",
  272. "LineLoop": "api/en/objects/LineLoop",
  273. "LineSegments": "api/en/objects/LineSegments",
  274. "LOD": "api/en/objects/LOD",
  275. "Mesh": "api/en/objects/Mesh",
  276. "Points": "api/en/objects/Points",
  277. "Skeleton": "api/en/objects/Skeleton",
  278. "SkinnedMesh": "api/en/objects/SkinnedMesh",
  279. "Sprite": "api/en/objects/Sprite"
  280. },
  281. "Renderers": {
  282. "WebGLRenderer": "api/en/renderers/WebGLRenderer",
  283. "WebGLRenderTarget": "api/en/renderers/WebGLRenderTarget",
  284. "WebGLRenderTargetCube": "api/en/renderers/WebGLRenderTargetCube"
  285. },
  286. "Renderers / Shaders": {
  287. "ShaderChunk": "api/en/renderers/shaders/ShaderChunk",
  288. "ShaderLib": "api/en/renderers/shaders/ShaderLib",
  289. "UniformsLib": "api/en/renderers/shaders/UniformsLib",
  290. "UniformsUtils": "api/en/renderers/shaders/UniformsUtils"
  291. },
  292. "Scenes": {
  293. "Fog": "api/en/scenes/Fog",
  294. "FogExp2": "api/en/scenes/FogExp2",
  295. "Scene": "api/en/scenes/Scene"
  296. },
  297. "Textures": {
  298. "CanvasTexture": "api/en/textures/CanvasTexture",
  299. "CompressedTexture": "api/en/textures/CompressedTexture",
  300. "CubeTexture": "api/en/textures/CubeTexture",
  301. "DataTexture": "api/en/textures/DataTexture",
  302. "DataTexture3D": "api/en/textures/DataTexture3D",
  303. "DepthTexture": "api/en/textures/DepthTexture",
  304. "Texture": "api/en/textures/Texture",
  305. "VideoTexture": "api/en/textures/VideoTexture"
  306. }
  307. },
  308. "Examples": {
  309. "Animations": {
  310. "CCDIKSolver": "examples/animations/CCDIKSolver",
  311. "MMDAnimationHelper": "examples/animations/MMDAnimationHelper",
  312. "MMDPhysics": "examples/animations/MMDPhysics"
  313. },
  314. "Controls": {
  315. "OrbitControls": "examples/controls/OrbitControls"
  316. },
  317. "Geometries": {
  318. "ConvexBufferGeometry": "examples/geometries/ConvexBufferGeometry",
  319. "ConvexGeometry": "examples/geometries/ConvexGeometry",
  320. "DecalGeometry": "examples/geometries/DecalGeometry"
  321. },
  322. "Loaders": {
  323. "BabylonLoader": "examples/loaders/BabylonLoader",
  324. "GLTFLoader": "examples/loaders/GLTFLoader",
  325. "MMDLoader": "examples/loaders/MMDLoader",
  326. "MTLLoader": "examples/loaders/MTLLoader",
  327. "OBJLoader": "examples/loaders/OBJLoader",
  328. "OBJLoader2": "examples/loaders/OBJLoader2",
  329. "LoaderSupport": "examples/loaders/LoaderSupport",
  330. "PCDLoader": "examples/loaders/PCDLoader",
  331. "PDBLoader": "examples/loaders/PDBLoader",
  332. "SVGLoader": "examples/loaders/SVGLoader",
  333. "TGALoader": "examples/loaders/TGALoader",
  334. "PRWMLoader": "examples/loaders/PRWMLoader"
  335. },
  336. "Objects": {
  337. "Lensflare": "examples/objects/Lensflare",
  338. },
  339. "Exporters": {
  340. "GLTFExporter": "examples/exporters/GLTFExporter",
  341. "PLYExporter": "examples/exporters/PLYExporter"
  342. },
  343. "Plugins": {
  344. "LookupTable": "examples/Lut",
  345. "SpriteCanvasMaterial": "examples/SpriteCanvasMaterial"
  346. },
  347. "QuickHull": {
  348. "Face": "examples/quickhull/Face",
  349. "HalfEdge": "examples/quickhull/HalfEdge",
  350. "QuickHull": "examples/quickhull/QuickHull",
  351. "VertexNode": "examples/quickhull/VertexNode",
  352. "VertexList": "examples/quickhull/VertexList"
  353. },
  354. "Renderers": {
  355. "CanvasRenderer": "examples/renderers/CanvasRenderer",
  356. "CSS2DRenderer": "examples/renderers/CSS2DRenderer",
  357. "CSS3DRenderer": "examples/renderers/CSS3DRenderer",
  358. "SVGRenderer": "examples/renderers/SVGRenderer"
  359. },
  360. "Utils": {
  361. "BufferGeometryUtils": "examples/utils/BufferGeometryUtils",
  362. "SceneUtils": "examples/utils/SceneUtils"
  363. }
  364. },
  365. "Developer Reference": {
  366. "Polyfills": {
  367. "Polyfills": "api/en/Polyfills"
  368. },
  369. "WebGLRenderer": {
  370. "WebGLProgram": "api/en/renderers/webgl/WebGLProgram",
  371. "WebGLShader": "api/en/renderers/webgl/WebGLShader",
  372. "WebGLState": "api/en/renderers/webgl/WebGLState"
  373. }
  374. }
  375. },
  376. "zh": {
  377. "Manual": {
  378. "Getting Started": {
  379. "创建一个场景": "manual/zh/introduction/Creating-a-scene",
  380. "通过模块来引入": "manual/zh/introduction/Import-via-modules",
  381. "浏览器支持": "manual/zh/introduction/Browser-support",
  382. "WebGL兼容性检查": "manual/zh/introduction/WebGL-compatibility-check",
  383. "如何在本地运行Three.js": "manual/zh/introduction/How-to-run-things-locally",
  384. "画线": "manual/zh/introduction/Drawing-lines",
  385. "创建文字": "manual/zh/introduction/Creating-text",
  386. "载入3D模型": "manual/zh/introduction/Loading-3D-models",
  387. "迁移指南": "manual/zh/introduction/Migration-guide",
  388. "代码风格指南": "manual/zh/introduction/Code-style-guide",
  389. "常见问题": "manual/zh/introduction/FAQ",
  390. "一些有用的链接": "manual/zh/introduction/Useful-links"
  391. },
  392. "Next Steps": {
  393. "How to update things": "manual/zh/introduction/How-to-update-things",
  394. "Matrix transformations": "manual/zh/introduction/Matrix-transformations",
  395. "Animation system": "manual/zh/introduction/Animation-system"
  396. },
  397. "Build Tools": {
  398. "Testing with NPM": "manual/zh/buildTools/Testing-with-NPM"
  399. }
  400. },
  401. "Reference": {
  402. "Animation": {
  403. "AnimationAction": "api/zh/animation/AnimationAction",
  404. "AnimationClip": "api/zh/animation/AnimationClip",
  405. "AnimationMixer": "api/zh/animation/AnimationMixer",
  406. "AnimationObjectGroup": "api/zh/animation/AnimationObjectGroup",
  407. "AnimationUtils": "api/zh/animation/AnimationUtils",
  408. "KeyframeTrack": "api/zh/animation/KeyframeTrack",
  409. "PropertyBinding": "api/zh/animation/PropertyBinding",
  410. "PropertyMixer": "api/zh/animation/PropertyMixer"
  411. },
  412. "Animation / Tracks": {
  413. "BooleanKeyframeTrack": "api/zh/animation/tracks/BooleanKeyframeTrack",
  414. "ColorKeyframeTrack": "api/zh/animation/tracks/ColorKeyframeTrack",
  415. "NumberKeyframeTrack": "api/zh/animation/tracks/NumberKeyframeTrack",
  416. "QuaternionKeyframeTrack": "api/zh/animation/tracks/QuaternionKeyframeTrack",
  417. "StringKeyframeTrack": "api/zh/animation/tracks/StringKeyframeTrack",
  418. "VectorKeyframeTrack": "api/zh/animation/tracks/VectorKeyframeTrack"
  419. },
  420. "Audio": {
  421. "Audio": "api/zh/audio/Audio",
  422. "AudioAnalyser": "api/zh/audio/AudioAnalyser",
  423. "AudioContext": "api/zh/audio/AudioContext",
  424. "AudioListener": "api/zh/audio/AudioListener",
  425. "PositionalAudio": "api/zh/audio/PositionalAudio"
  426. },
  427. "Cameras": {
  428. "ArrayCamera": "api/zh/cameras/ArrayCamera",
  429. "Camera": "api/zh/cameras/Camera",
  430. "CubeCamera": "api/zh/cameras/CubeCamera",
  431. "OrthographicCamera": "api/zh/cameras/OrthographicCamera",
  432. "PerspectiveCamera": "api/zh/cameras/PerspectiveCamera",
  433. "StereoCamera": "api/zh/cameras/StereoCamera"
  434. },
  435. "Constants": {
  436. "Animation": "api/zh/constants/Animation",
  437. "Core": "api/zh/constants/Core",
  438. "CustomBlendingEquation": "api/zh/constants/CustomBlendingEquations",
  439. "DrawModes": "api/zh/constants/DrawModes",
  440. "Materials": "api/zh/constants/Materials",
  441. "Renderer": "api/zh/constants/Renderer",
  442. "Textures": "api/zh/constants/Textures"
  443. },
  444. "Core": {
  445. "BufferAttribute": "api/zh/core/BufferAttribute",
  446. "BufferGeometry": "api/zh/core/BufferGeometry",
  447. "Clock": "api/zh/core/Clock",
  448. "DirectGeometry": "api/zh/core/DirectGeometry",
  449. "EventDispatcher": "api/zh/core/EventDispatcher",
  450. "Face3": "api/zh/core/Face3",
  451. "Geometry": "api/zh/core/Geometry",
  452. "InstancedBufferAttribute": "api/zh/core/InstancedBufferAttribute",
  453. "InstancedBufferGeometry": "api/zh/core/InstancedBufferGeometry",
  454. "InstancedInterleavedBuffer": "api/zh/core/InstancedInterleavedBuffer",
  455. "InterleavedBuffer": "api/zh/core/InterleavedBuffer",
  456. "InterleavedBufferAttribute": "api/zh/core/InterleavedBufferAttribute",
  457. "Layers": "api/zh/core/Layers",
  458. "Object3D": "api/zh/core/Object3D",
  459. "Raycaster": "api/zh/core/Raycaster",
  460. "Uniform": "api/zh/core/Uniform"
  461. },
  462. "Core / BufferAttributes": {
  463. "BufferAttribute Types": "api/zh/core/bufferAttributeTypes/BufferAttributeTypes"
  464. },
  465. "Deprecated": {
  466. "DeprecatedList": "api/zh/deprecated/DeprecatedList"
  467. },
  468. "Extras": {
  469. "Earcut": "api/zh/extras/Earcut",
  470. "ShapeUtils": "api/zh/extras/ShapeUtils"
  471. },
  472. "Extras / Core": {
  473. "Curve": "api/zh/extras/core/Curve",
  474. "CurvePath": "api/zh/extras/core/CurvePath",
  475. "Font": "api/zh/extras/core/Font",
  476. "Interpolations": "api/zh/extras/core/Interpolations",
  477. "Path": "api/zh/extras/core/Path",
  478. "Shape": "api/zh/extras/core/Shape",
  479. "ShapePath": "api/zh/extras/core/ShapePath"
  480. },
  481. "Extras / Curves": {
  482. "ArcCurve": "api/zh/extras/curves/ArcCurve",
  483. "CatmullRomCurve3": "api/zh/extras/curves/CatmullRomCurve3",
  484. "CubicBezierCurve": "api/zh/extras/curves/CubicBezierCurve",
  485. "CubicBezierCurve3": "api/zh/extras/curves/CubicBezierCurve3",
  486. "EllipseCurve": "api/zh/extras/curves/EllipseCurve",
  487. "LineCurve": "api/zh/extras/curves/LineCurve",
  488. "LineCurve3": "api/zh/extras/curves/LineCurve3",
  489. "QuadraticBezierCurve": "api/zh/extras/curves/QuadraticBezierCurve",
  490. "QuadraticBezierCurve3": "api/zh/extras/curves/QuadraticBezierCurve3",
  491. "SplineCurve": "api/zh/extras/curves/SplineCurve"
  492. },
  493. "Extras / Objects": {
  494. "ImmediateRenderObject": "api/zh/extras/objects/ImmediateRenderObject",
  495. },
  496. "Geometries": {
  497. "BoxBufferGeometry": "api/zh/geometries/BoxBufferGeometry",
  498. "BoxGeometry": "api/zh/geometries/BoxGeometry",
  499. "CircleBufferGeometry": "api/zh/geometries/CircleBufferGeometry",
  500. "CircleGeometry": "api/zh/geometries/CircleGeometry",
  501. "ConeBufferGeometry": "api/zh/geometries/ConeBufferGeometry",
  502. "ConeGeometry": "api/zh/geometries/ConeGeometry",
  503. "CylinderBufferGeometry": "api/zh/geometries/CylinderBufferGeometry",
  504. "CylinderGeometry": "api/zh/geometries/CylinderGeometry",
  505. "DodecahedronBufferGeometry": "api/zh/geometries/DodecahedronBufferGeometry",
  506. "DodecahedronGeometry": "api/zh/geometries/DodecahedronGeometry",
  507. "EdgesGeometry": "api/zh/geometries/EdgesGeometry",
  508. "ExtrudeBufferGeometry": "api/zh/geometries/ExtrudeBufferGeometry",
  509. "ExtrudeGeometry": "api/zh/geometries/ExtrudeGeometry",
  510. "IcosahedronBufferGeometry": "api/zh/geometries/IcosahedronBufferGeometry",
  511. "IcosahedronGeometry": "api/zh/geometries/IcosahedronGeometry",
  512. "LatheBufferGeometry": "api/zh/geometries/LatheBufferGeometry",
  513. "LatheGeometry": "api/zh/geometries/LatheGeometry",
  514. "OctahedronBufferGeometry": "api/zh/geometries/OctahedronBufferGeometry",
  515. "OctahedronGeometry": "api/zh/geometries/OctahedronGeometry",
  516. "ParametricBufferGeometry": "api/zh/geometries/ParametricBufferGeometry",
  517. "ParametricGeometry": "api/zh/geometries/ParametricGeometry",
  518. "PlaneBufferGeometry": "api/zh/geometries/PlaneBufferGeometry",
  519. "PlaneGeometry": "api/zh/geometries/PlaneGeometry",
  520. "PolyhedronBufferGeometry": "api/zh/geometries/PolyhedronBufferGeometry",
  521. "PolyhedronGeometry": "api/zh/geometries/PolyhedronGeometry",
  522. "RingBufferGeometry": "api/zh/geometries/RingBufferGeometry",
  523. "RingGeometry": "api/zh/geometries/RingGeometry",
  524. "ShapeBufferGeometry": "api/zh/geometries/ShapeBufferGeometry",
  525. "ShapeGeometry": "api/zh/geometries/ShapeGeometry",
  526. "SphereBufferGeometry": "api/zh/geometries/SphereBufferGeometry",
  527. "SphereGeometry": "api/zh/geometries/SphereGeometry",
  528. "TetrahedronBufferGeometry": "api/zh/geometries/TetrahedronBufferGeometry",
  529. "TetrahedronGeometry": "api/zh/geometries/TetrahedronGeometry",
  530. "TextBufferGeometry": "api/zh/geometries/TextBufferGeometry",
  531. "TextGeometry": "api/zh/geometries/TextGeometry",
  532. "TorusBufferGeometry": "api/zh/geometries/TorusBufferGeometry",
  533. "TorusGeometry": "api/zh/geometries/TorusGeometry",
  534. "TorusKnotBufferGeometry": "api/zh/geometries/TorusKnotBufferGeometry",
  535. "TorusKnotGeometry": "api/zh/geometries/TorusKnotGeometry",
  536. "TubeBufferGeometry": "api/zh/geometries/TubeBufferGeometry",
  537. "TubeGeometry": "api/zh/geometries/TubeGeometry",
  538. "WireframeGeometry": "api/zh/geometries/WireframeGeometry"
  539. },
  540. "Helpers": {
  541. "ArrowHelper": "api/zh/helpers/ArrowHelper",
  542. "AxesHelper": "api/zh/helpers/AxesHelper",
  543. "BoxHelper": "api/zh/helpers/BoxHelper",
  544. "Box3Helper": "api/zh/helpers/Box3Helper",
  545. "CameraHelper": "api/zh/helpers/CameraHelper",
  546. "DirectionalLightHelper": "api/zh/helpers/DirectionalLightHelper",
  547. "FaceNormalsHelper": "api/zh/helpers/FaceNormalsHelper",
  548. "GridHelper": "api/zh/helpers/GridHelper",
  549. "PolarGridHelper": "api/zh/helpers/PolarGridHelper",
  550. "HemisphereLightHelper": "api/zh/helpers/HemisphereLightHelper",
  551. "PlaneHelper": "api/zh/helpers/PlaneHelper",
  552. "PointLightHelper": "api/zh/helpers/PointLightHelper",
  553. "RectAreaLightHelper": "api/zh/helpers/RectAreaLightHelper",
  554. "SkeletonHelper": "api/zh/helpers/SkeletonHelper",
  555. "SpotLightHelper": "api/zh/helpers/SpotLightHelper",
  556. "VertexNormalsHelper": "api/zh/helpers/VertexNormalsHelper"
  557. },
  558. "Lights": {
  559. "AmbientLight": "api/zh/lights/AmbientLight",
  560. "DirectionalLight": "api/zh/lights/DirectionalLight",
  561. "HemisphereLight": "api/zh/lights/HemisphereLight",
  562. "Light": "api/zh/lights/Light",
  563. "PointLight": "api/zh/lights/PointLight",
  564. "RectAreaLight": "api/zh/lights/RectAreaLight",
  565. "SpotLight": "api/zh/lights/SpotLight"
  566. },
  567. "Lights / Shadows": {
  568. "DirectionalLightShadow": "api/zh/lights/shadows/DirectionalLightShadow",
  569. "LightShadow": "api/zh/lights/shadows/LightShadow",
  570. "SpotLightShadow": "api/zh/lights/shadows/SpotLightShadow"
  571. },
  572. "Loaders": {
  573. "AnimationLoader": "api/zh/loaders/AnimationLoader",
  574. "AudioLoader": "api/zh/loaders/AudioLoader",
  575. "BufferGeometryLoader": "api/zh/loaders/BufferGeometryLoader",
  576. "Cache": "api/zh/loaders/Cache",
  577. "CompressedTextureLoader": "api/zh/loaders/CompressedTextureLoader",
  578. "CubeTextureLoader": "api/zh/loaders/CubeTextureLoader",
  579. "DataTextureLoader": "api/zh/loaders/DataTextureLoader",
  580. "FileLoader": "api/zh/loaders/FileLoader",
  581. "FontLoader": "api/zh/loaders/FontLoader",
  582. "ImageBitmapLoader": "api/zh/loaders/ImageBitmapLoader",
  583. "ImageLoader": "api/zh/loaders/ImageLoader",
  584. "JSONLoader": "api/zh/loaders/JSONLoader",
  585. "Loader": "api/zh/loaders/Loader",
  586. "LoaderUtils": "api/zh/loaders/LoaderUtils",
  587. "MaterialLoader": "api/zh/loaders/MaterialLoader",
  588. "ObjectLoader": "api/zh/loaders/ObjectLoader",
  589. "TextureLoader": "api/zh/loaders/TextureLoader"
  590. },
  591. "Loaders / Managers": {
  592. "DefaultLoadingManager": "api/zh/loaders/managers/DefaultLoadingManager",
  593. "LoadingManager": "api/zh/loaders/managers/LoadingManager"
  594. },
  595. "Materials": {
  596. "LineBasicMaterial": "api/zh/materials/LineBasicMaterial",
  597. "LineDashedMaterial": "api/zh/materials/LineDashedMaterial",
  598. "Material": "api/zh/materials/Material",
  599. "MeshBasicMaterial": "api/zh/materials/MeshBasicMaterial",
  600. "MeshDepthMaterial": "api/zh/materials/MeshDepthMaterial",
  601. "MeshLambertMaterial": "api/zh/materials/MeshLambertMaterial",
  602. "MeshNormalMaterial": "api/zh/materials/MeshNormalMaterial",
  603. "MeshPhongMaterial": "api/zh/materials/MeshPhongMaterial",
  604. "MeshPhysicalMaterial": "api/zh/materials/MeshPhysicalMaterial",
  605. "MeshStandardMaterial": "api/zh/materials/MeshStandardMaterial",
  606. "MeshToonMaterial": "api/zh/materials/MeshToonMaterial",
  607. "PointsMaterial": "api/zh/materials/PointsMaterial",
  608. "RawShaderMaterial": "api/zh/materials/RawShaderMaterial",
  609. "ShaderMaterial": "api/zh/materials/ShaderMaterial",
  610. "ShadowMaterial": "api/zh/materials/ShadowMaterial",
  611. "SpriteMaterial": "api/zh/materials/SpriteMaterial"
  612. },
  613. "Math": {
  614. "Box2": "api/zh/math/Box2",
  615. "Box3": "api/zh/math/Box3",
  616. "Color": "api/zh/math/Color",
  617. "Cylindrical": "api/zh/math/Cylindrical",
  618. "Euler": "api/zh/math/Euler",
  619. "Frustum": "api/zh/math/Frustum",
  620. "Interpolant": "api/zh/math/Interpolant",
  621. "Line3": "api/zh/math/Line3",
  622. "Math": "api/zh/math/Math",
  623. "Matrix3": "api/zh/math/Matrix3",
  624. "Matrix4": "api/zh/math/Matrix4",
  625. "Plane": "api/zh/math/Plane",
  626. "Quaternion": "api/zh/math/Quaternion",
  627. "Ray": "api/zh/math/Ray",
  628. "Sphere": "api/zh/math/Sphere",
  629. "Spherical": "api/zh/math/Spherical",
  630. "Triangle": "api/zh/math/Triangle",
  631. "Vector2": "api/zh/math/Vector2",
  632. "Vector3": "api/zh/math/Vector3",
  633. "Vector4": "api/zh/math/Vector4"
  634. },
  635. "Math / Interpolants": {
  636. "CubicInterpolant": "api/zh/math/interpolants/CubicInterpolant",
  637. "DiscreteInterpolant": "api/zh/math/interpolants/DiscreteInterpolant",
  638. "LinearInterpolant": "api/zh/math/interpolants/LinearInterpolant",
  639. "QuaternionLinearInterpolant": "api/zh/math/interpolants/QuaternionLinearInterpolant"
  640. },
  641. "Objects": {
  642. "Bone": "api/zh/objects/Bone",
  643. "Group": "api/zh/objects/Group",
  644. "Line": "api/zh/objects/Line",
  645. "LineLoop": "api/zh/objects/LineLoop",
  646. "LineSegments": "api/zh/objects/LineSegments",
  647. "LOD": "api/zh/objects/LOD",
  648. "Mesh": "api/zh/objects/Mesh",
  649. "Points": "api/zh/objects/Points",
  650. "Skeleton": "api/zh/objects/Skeleton",
  651. "SkinnedMesh": "api/zh/objects/SkinnedMesh",
  652. "Sprite": "api/zh/objects/Sprite"
  653. },
  654. "Renderers": {
  655. "WebGLRenderer": "api/zh/renderers/WebGLRenderer",
  656. "WebGLRenderTarget": "api/zh/renderers/WebGLRenderTarget",
  657. "WebGLRenderTargetCube": "api/zh/renderers/WebGLRenderTargetCube"
  658. },
  659. "Renderers / Shaders": {
  660. "ShaderChunk": "api/zh/renderers/shaders/ShaderChunk",
  661. "ShaderLib": "api/zh/renderers/shaders/ShaderLib",
  662. "UniformsLib": "api/zh/renderers/shaders/UniformsLib",
  663. "UniformsUtils": "api/zh/renderers/shaders/UniformsUtils"
  664. },
  665. "Scenes": {
  666. "Fog": "api/zh/scenes/Fog",
  667. "FogExp2": "api/zh/scenes/FogExp2",
  668. "Scene": "api/zh/scenes/Scene"
  669. },
  670. "Textures": {
  671. "CanvasTexture": "api/zh/textures/CanvasTexture",
  672. "CompressedTexture": "api/zh/textures/CompressedTexture",
  673. "CubeTexture": "api/zh/textures/CubeTexture",
  674. "DataTexture": "api/zh/textures/DataTexture",
  675. "DataTexture3D": "api/en/textures/DataTexture3D",
  676. "DepthTexture": "api/zh/textures/DepthTexture",
  677. "Texture": "api/zh/textures/Texture",
  678. "VideoTexture": "api/zh/textures/VideoTexture"
  679. }
  680. },
  681. "Examples": {
  682. "Animations": {
  683. "CCDIKSolver": "examples/animations/CCDIKSolver",
  684. "MMDAnimationHelper": "examples/animations/MMDAnimationHelper",
  685. "MMDPhysics": "examples/animations/MMDPhysics"
  686. },
  687. "Controls": {
  688. "OrbitControls": "examples/controls/OrbitControls"
  689. },
  690. "Geometries": {
  691. "ConvexBufferGeometry": "examples/geometries/ConvexBufferGeometry",
  692. "ConvexGeometry": "examples/geometries/ConvexGeometry",
  693. "DecalGeometry": "examples/geometries/DecalGeometry"
  694. },
  695. "Loaders": {
  696. "BabylonLoader": "examples/loaders/BabylonLoader",
  697. "GLTFLoader": "examples/loaders/GLTFLoader",
  698. "MMDLoader": "examples/loaders/MMDLoader",
  699. "MTLLoader": "examples/loaders/MTLLoader",
  700. "OBJLoader": "examples/loaders/OBJLoader",
  701. "OBJLoader2": "examples/loaders/OBJLoader2",
  702. "LoaderSupport": "examples/loaders/LoaderSupport",
  703. "PCDLoader": "examples/loaders/PCDLoader",
  704. "PDBLoader": "examples/loaders/PDBLoader",
  705. "SVGLoader": "examples/loaders/SVGLoader",
  706. "TGALoader": "examples/loaders/TGALoader",
  707. "PRWMLoader": "examples/loaders/PRWMLoader"
  708. },
  709. "Objects": {
  710. "Lensflare": "examples/objects/Lensflare",
  711. },
  712. "Exporters": {
  713. "GLTFExporter": "examples/exporters/GLTFExporter",
  714. "PLYExporter": "examples/exporters/PLYExporter"
  715. },
  716. "Plugins": {
  717. "LookupTable": "examples/Lut",
  718. "SpriteCanvasMaterial": "examples/SpriteCanvasMaterial"
  719. },
  720. "QuickHull": {
  721. "Face": "examples/quickhull/Face",
  722. "HalfEdge": "examples/quickhull/HalfEdge",
  723. "QuickHull": "examples/quickhull/QuickHull",
  724. "VertexNode": "examples/quickhull/VertexNode",
  725. "VertexList": "examples/quickhull/VertexList"
  726. },
  727. "Renderers": {
  728. "CanvasRenderer": "examples/renderers/CanvasRenderer",
  729. "CSS2DRenderer": "examples/renderers/CSS2DRenderer",
  730. "CSS3DRenderer": "examples/renderers/CSS3DRenderer",
  731. "SVGRenderer": "examples/renderers/SVGRenderer"
  732. },
  733. "Utils": {
  734. "BufferGeometryUtils": "examples/utils/BufferGeometryUtils",
  735. "SceneUtils": "examples/utils/SceneUtils"
  736. }
  737. },
  738. "Developer Reference": {
  739. "Polyfills": {
  740. "Polyfills": "api/zh/Polyfills"
  741. },
  742. "WebGLRenderer": {
  743. "WebGLProgram": "api/zh/renderers/webgl/WebGLProgram",
  744. "WebGLShader": "api/zh/renderers/webgl/WebGLShader",
  745. "WebGLState": "api/zh/renderers/webgl/WebGLState"
  746. }
  747. }
  748. }
  749. };