list.js 35 KB

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