list.js 39 KB

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