list.js 35 KB

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