list.js 39 KB

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