list.js 36 KB

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