2
0

list.json 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080
  1. {
  2. "en": {
  3. "Manual": {
  4. "Getting Started": {
  5. "Creating a scene": "manual/en/introduction/Creating-a-scene",
  6. "Installation": "manual/en/introduction/Installation",
  7. "Browser support": "manual/en/introduction/Browser-support",
  8. "WebGL compatibility check": "manual/en/introduction/WebGL-compatibility-check",
  9. "How to run things locally": "manual/en/introduction/How-to-run-things-locally",
  10. "Drawing lines": "manual/en/introduction/Drawing-lines",
  11. "Creating text": "manual/en/introduction/Creating-text",
  12. "Loading 3D models": "manual/en/introduction/Loading-3D-models",
  13. "Libraries and Plugins": "manual/en/introduction/Libraries-and-Plugins",
  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. "EventDispatcher": "api/en/core/EventDispatcher",
  76. "GLBufferAttribute": "api/en/core/GLBufferAttribute",
  77. "InstancedBufferAttribute": "api/en/core/InstancedBufferAttribute",
  78. "InstancedBufferGeometry": "api/en/core/InstancedBufferGeometry",
  79. "InstancedInterleavedBuffer": "api/en/core/InstancedInterleavedBuffer",
  80. "InterleavedBuffer": "api/en/core/InterleavedBuffer",
  81. "InterleavedBufferAttribute": "api/en/core/InterleavedBufferAttribute",
  82. "Layers": "api/en/core/Layers",
  83. "Object3D": "api/en/core/Object3D",
  84. "Raycaster": "api/en/core/Raycaster",
  85. "Uniform": "api/en/core/Uniform"
  86. },
  87. "Core / BufferAttributes": {
  88. "BufferAttribute Types": "api/en/core/bufferAttributeTypes/BufferAttributeTypes"
  89. },
  90. "Extras": {
  91. "DataUtils": "api/en/extras/DataUtils",
  92. "Earcut": "api/en/extras/Earcut",
  93. "ImageUtils": "api/en/extras/ImageUtils",
  94. "PMREMGenerator": "api/en/extras/PMREMGenerator",
  95. "ShapeUtils": "api/en/extras/ShapeUtils"
  96. },
  97. "Extras / Core": {
  98. "Curve": "api/en/extras/core/Curve",
  99. "CurvePath": "api/en/extras/core/CurvePath",
  100. "Font": "api/en/extras/core/Font",
  101. "Interpolations": "api/en/extras/core/Interpolations",
  102. "Path": "api/en/extras/core/Path",
  103. "Shape": "api/en/extras/core/Shape",
  104. "ShapePath": "api/en/extras/core/ShapePath"
  105. },
  106. "Extras / Curves": {
  107. "ArcCurve": "api/en/extras/curves/ArcCurve",
  108. "CatmullRomCurve3": "api/en/extras/curves/CatmullRomCurve3",
  109. "CubicBezierCurve": "api/en/extras/curves/CubicBezierCurve",
  110. "CubicBezierCurve3": "api/en/extras/curves/CubicBezierCurve3",
  111. "EllipseCurve": "api/en/extras/curves/EllipseCurve",
  112. "LineCurve": "api/en/extras/curves/LineCurve",
  113. "LineCurve3": "api/en/extras/curves/LineCurve3",
  114. "QuadraticBezierCurve": "api/en/extras/curves/QuadraticBezierCurve",
  115. "QuadraticBezierCurve3": "api/en/extras/curves/QuadraticBezierCurve3",
  116. "SplineCurve": "api/en/extras/curves/SplineCurve"
  117. },
  118. "Extras / Objects": {
  119. "ImmediateRenderObject": "api/en/extras/objects/ImmediateRenderObject"
  120. },
  121. "Geometries": {
  122. "BoxGeometry": "api/en/geometries/BoxGeometry",
  123. "CircleGeometry": "api/en/geometries/CircleGeometry",
  124. "ConeGeometry": "api/en/geometries/ConeGeometry",
  125. "CylinderGeometry": "api/en/geometries/CylinderGeometry",
  126. "DodecahedronGeometry": "api/en/geometries/DodecahedronGeometry",
  127. "EdgesGeometry": "api/en/geometries/EdgesGeometry",
  128. "ExtrudeGeometry": "api/en/geometries/ExtrudeGeometry",
  129. "IcosahedronGeometry": "api/en/geometries/IcosahedronGeometry",
  130. "LatheGeometry": "api/en/geometries/LatheGeometry",
  131. "OctahedronGeometry": "api/en/geometries/OctahedronGeometry",
  132. "ParametricGeometry": "api/en/geometries/ParametricGeometry",
  133. "PlaneGeometry": "api/en/geometries/PlaneGeometry",
  134. "PolyhedronGeometry": "api/en/geometries/PolyhedronGeometry",
  135. "RingGeometry": "api/en/geometries/RingGeometry",
  136. "ShapeGeometry": "api/en/geometries/ShapeGeometry",
  137. "SphereGeometry": "api/en/geometries/SphereGeometry",
  138. "TetrahedronGeometry": "api/en/geometries/TetrahedronGeometry",
  139. "TextGeometry": "api/en/geometries/TextGeometry",
  140. "TorusGeometry": "api/en/geometries/TorusGeometry",
  141. "TorusKnotGeometry": "api/en/geometries/TorusKnotGeometry",
  142. "TubeGeometry": "api/en/geometries/TubeGeometry",
  143. "WireframeGeometry": "api/en/geometries/WireframeGeometry"
  144. },
  145. "Helpers": {
  146. "ArrowHelper": "api/en/helpers/ArrowHelper",
  147. "AxesHelper": "api/en/helpers/AxesHelper",
  148. "BoxHelper": "api/en/helpers/BoxHelper",
  149. "Box3Helper": "api/en/helpers/Box3Helper",
  150. "CameraHelper": "api/en/helpers/CameraHelper",
  151. "DirectionalLightHelper": "api/en/helpers/DirectionalLightHelper",
  152. "GridHelper": "api/en/helpers/GridHelper",
  153. "PolarGridHelper": "api/en/helpers/PolarGridHelper",
  154. "HemisphereLightHelper": "api/en/helpers/HemisphereLightHelper",
  155. "PlaneHelper": "api/en/helpers/PlaneHelper",
  156. "PointLightHelper": "api/en/helpers/PointLightHelper",
  157. "SkeletonHelper": "api/en/helpers/SkeletonHelper",
  158. "SpotLightHelper": "api/en/helpers/SpotLightHelper"
  159. },
  160. "Lights": {
  161. "AmbientLight": "api/en/lights/AmbientLight",
  162. "AmbientLightProbe": "api/en/lights/AmbientLightProbe",
  163. "DirectionalLight": "api/en/lights/DirectionalLight",
  164. "HemisphereLight": "api/en/lights/HemisphereLight",
  165. "HemisphereLightProbe": "api/en/lights/HemisphereLightProbe",
  166. "Light": "api/en/lights/Light",
  167. "LightProbe": "api/en/lights/LightProbe",
  168. "PointLight": "api/en/lights/PointLight",
  169. "RectAreaLight": "api/en/lights/RectAreaLight",
  170. "SpotLight": "api/en/lights/SpotLight"
  171. },
  172. "Lights / Shadows": {
  173. "LightShadow": "api/en/lights/shadows/LightShadow",
  174. "PointLightShadow": "api/en/lights/shadows/PointLightShadow",
  175. "DirectionalLightShadow": "api/en/lights/shadows/DirectionalLightShadow",
  176. "SpotLightShadow": "api/en/lights/shadows/SpotLightShadow"
  177. },
  178. "Loaders": {
  179. "AnimationLoader": "api/en/loaders/AnimationLoader",
  180. "AudioLoader": "api/en/loaders/AudioLoader",
  181. "BufferGeometryLoader": "api/en/loaders/BufferGeometryLoader",
  182. "Cache": "api/en/loaders/Cache",
  183. "CompressedTextureLoader": "api/en/loaders/CompressedTextureLoader",
  184. "CubeTextureLoader": "api/en/loaders/CubeTextureLoader",
  185. "DataTextureLoader": "api/en/loaders/DataTextureLoader",
  186. "FileLoader": "api/en/loaders/FileLoader",
  187. "FontLoader": "api/en/loaders/FontLoader",
  188. "ImageBitmapLoader": "api/en/loaders/ImageBitmapLoader",
  189. "ImageLoader": "api/en/loaders/ImageLoader",
  190. "Loader": "api/en/loaders/Loader",
  191. "LoaderUtils": "api/en/loaders/LoaderUtils",
  192. "MaterialLoader": "api/en/loaders/MaterialLoader",
  193. "ObjectLoader": "api/en/loaders/ObjectLoader",
  194. "TextureLoader": "api/en/loaders/TextureLoader"
  195. },
  196. "Loaders / Managers": {
  197. "DefaultLoadingManager": "api/en/loaders/managers/DefaultLoadingManager",
  198. "LoadingManager": "api/en/loaders/managers/LoadingManager"
  199. },
  200. "Materials": {
  201. "LineBasicMaterial": "api/en/materials/LineBasicMaterial",
  202. "LineDashedMaterial": "api/en/materials/LineDashedMaterial",
  203. "Material": "api/en/materials/Material",
  204. "MeshBasicMaterial": "api/en/materials/MeshBasicMaterial",
  205. "MeshDepthMaterial": "api/en/materials/MeshDepthMaterial",
  206. "MeshDistanceMaterial": "api/en/materials/MeshDistanceMaterial",
  207. "MeshLambertMaterial": "api/en/materials/MeshLambertMaterial",
  208. "MeshMatcapMaterial": "api/en/materials/MeshMatcapMaterial",
  209. "MeshNormalMaterial": "api/en/materials/MeshNormalMaterial",
  210. "MeshPhongMaterial": "api/en/materials/MeshPhongMaterial",
  211. "MeshPhysicalMaterial": "api/en/materials/MeshPhysicalMaterial",
  212. "MeshStandardMaterial": "api/en/materials/MeshStandardMaterial",
  213. "MeshToonMaterial": "api/en/materials/MeshToonMaterial",
  214. "PointsMaterial": "api/en/materials/PointsMaterial",
  215. "RawShaderMaterial": "api/en/materials/RawShaderMaterial",
  216. "ShaderMaterial": "api/en/materials/ShaderMaterial",
  217. "ShadowMaterial": "api/en/materials/ShadowMaterial",
  218. "SpriteMaterial": "api/en/materials/SpriteMaterial"
  219. },
  220. "Math": {
  221. "Box2": "api/en/math/Box2",
  222. "Box3": "api/en/math/Box3",
  223. "Color": "api/en/math/Color",
  224. "Cylindrical": "api/en/math/Cylindrical",
  225. "Euler": "api/en/math/Euler",
  226. "Frustum": "api/en/math/Frustum",
  227. "Interpolant": "api/en/math/Interpolant",
  228. "Line3": "api/en/math/Line3",
  229. "MathUtils": "api/en/math/MathUtils",
  230. "Matrix3": "api/en/math/Matrix3",
  231. "Matrix4": "api/en/math/Matrix4",
  232. "Plane": "api/en/math/Plane",
  233. "Quaternion": "api/en/math/Quaternion",
  234. "Ray": "api/en/math/Ray",
  235. "Sphere": "api/en/math/Sphere",
  236. "Spherical": "api/en/math/Spherical",
  237. "SphericalHarmonics3": "api/en/math/SphericalHarmonics3",
  238. "Triangle": "api/en/math/Triangle",
  239. "Vector2": "api/en/math/Vector2",
  240. "Vector3": "api/en/math/Vector3",
  241. "Vector4": "api/en/math/Vector4"
  242. },
  243. "Math / Interpolants": {
  244. "CubicInterpolant": "api/en/math/interpolants/CubicInterpolant",
  245. "DiscreteInterpolant": "api/en/math/interpolants/DiscreteInterpolant",
  246. "LinearInterpolant": "api/en/math/interpolants/LinearInterpolant",
  247. "QuaternionLinearInterpolant": "api/en/math/interpolants/QuaternionLinearInterpolant"
  248. },
  249. "Objects": {
  250. "Bone": "api/en/objects/Bone",
  251. "Group": "api/en/objects/Group",
  252. "InstancedMesh": "api/en/objects/InstancedMesh",
  253. "Line": "api/en/objects/Line",
  254. "LineLoop": "api/en/objects/LineLoop",
  255. "LineSegments": "api/en/objects/LineSegments",
  256. "LOD": "api/en/objects/LOD",
  257. "Mesh": "api/en/objects/Mesh",
  258. "Points": "api/en/objects/Points",
  259. "Skeleton": "api/en/objects/Skeleton",
  260. "SkinnedMesh": "api/en/objects/SkinnedMesh",
  261. "Sprite": "api/en/objects/Sprite"
  262. },
  263. "Renderers": {
  264. "WebGLMultipleRenderTargets": "api/en/renderers/WebGLMultipleRenderTargets",
  265. "WebGLMultisampleRenderTarget": "api/en/renderers/WebGLMultisampleRenderTarget",
  266. "WebGLRenderer": "api/en/renderers/WebGLRenderer",
  267. "WebGL1Renderer": "api/en/renderers/WebGL1Renderer",
  268. "WebGLRenderTarget": "api/en/renderers/WebGLRenderTarget",
  269. "WebGLCubeRenderTarget": "api/en/renderers/WebGLCubeRenderTarget"
  270. },
  271. "Renderers / Shaders": {
  272. "ShaderChunk": "api/en/renderers/shaders/ShaderChunk",
  273. "ShaderLib": "api/en/renderers/shaders/ShaderLib",
  274. "UniformsLib": "api/en/renderers/shaders/UniformsLib",
  275. "UniformsUtils": "api/en/renderers/shaders/UniformsUtils"
  276. },
  277. "Renderers / WebXR": {
  278. "WebXRManager": "api/en/renderers/webxr/WebXRManager"
  279. },
  280. "Scenes": {
  281. "Fog": "api/en/scenes/Fog",
  282. "FogExp2": "api/en/scenes/FogExp2",
  283. "Scene": "api/en/scenes/Scene"
  284. },
  285. "Textures": {
  286. "CanvasTexture": "api/en/textures/CanvasTexture",
  287. "CompressedTexture": "api/en/textures/CompressedTexture",
  288. "CubeTexture": "api/en/textures/CubeTexture",
  289. "DataTexture": "api/en/textures/DataTexture",
  290. "DataTexture2DArray": "api/en/textures/DataTexture2DArray",
  291. "DataTexture3D": "api/en/textures/DataTexture3D",
  292. "DepthTexture": "api/en/textures/DepthTexture",
  293. "Texture": "api/en/textures/Texture",
  294. "VideoTexture": "api/en/textures/VideoTexture"
  295. }
  296. },
  297. "Examples": {
  298. "Animations": {
  299. "CCDIKSolver": "examples/en/animations/CCDIKSolver",
  300. "MMDAnimationHelper": "examples/en/animations/MMDAnimationHelper",
  301. "MMDPhysics": "examples/en/animations/MMDPhysics"
  302. },
  303. "Controls": {
  304. "DeviceOrientationControls": "examples/en/controls/DeviceOrientationControls",
  305. "DragControls": "examples/en/controls/DragControls",
  306. "FirstPersonControls": "examples/en/controls/FirstPersonControls",
  307. "FlyControls": "examples/en/controls/FlyControls",
  308. "OrbitControls": "examples/en/controls/OrbitControls",
  309. "PointerLockControls": "examples/en/controls/PointerLockControls",
  310. "TrackballControls": "examples/en/controls/TrackballControls",
  311. "TransformControls": "examples/en/controls/TransformControls"
  312. },
  313. "Geometries": {
  314. "ConvexGeometry": "examples/en/geometries/ConvexGeometry",
  315. "DecalGeometry": "examples/en/geometries/DecalGeometry"
  316. },
  317. "Helpers": {
  318. "LightProbeHelper": "examples/en/helpers/LightProbeHelper",
  319. "PositionalAudioHelper": "examples/en/helpers/PositionalAudioHelper",
  320. "RectAreaLightHelper": "examples/en/helpers/RectAreaLightHelper",
  321. "VertexNormalsHelper": "examples/en/helpers/VertexNormalsHelper",
  322. "VertexTangentsHelper": "examples/en/helpers/VertexTangentsHelper"
  323. },
  324. "Lights": {
  325. "LightProbeGenerator": "examples/en/lights/LightProbeGenerator"
  326. },
  327. "Loaders": {
  328. "3DMLoader": "examples/en/loaders/3DMLoader",
  329. "BasisTextureLoader": "examples/en/loaders/BasisTextureLoader",
  330. "DRACOLoader": "examples/en/loaders/DRACOLoader",
  331. "GLTFLoader": "examples/en/loaders/GLTFLoader",
  332. "KTX2Loader": "examples/en/loaders/KTX2Loader",
  333. "MMDLoader": "examples/en/loaders/MMDLoader",
  334. "MTLLoader": "examples/en/loaders/MTLLoader",
  335. "OBJLoader": "examples/en/loaders/OBJLoader",
  336. "PCDLoader": "examples/en/loaders/PCDLoader",
  337. "PDBLoader": "examples/en/loaders/PDBLoader",
  338. "PRWMLoader": "examples/en/loaders/PRWMLoader",
  339. "SVGLoader": "examples/en/loaders/SVGLoader",
  340. "TGALoader": "examples/en/loaders/TGALoader"
  341. },
  342. "Objects": {
  343. "Lensflare": "examples/en/objects/Lensflare"
  344. },
  345. "Post-Processing": {
  346. "EffectComposer": "examples/en/postprocessing/EffectComposer"
  347. },
  348. "Exporters": {
  349. "GLTFExporter": "examples/en/exporters/GLTFExporter",
  350. "PLYExporter": "examples/en/exporters/PLYExporter",
  351. "ColladaExporter": "examples/en/exporters/ColladaExporter"
  352. },
  353. "Math": {
  354. "LookupTable": "examples/en/math/Lut",
  355. "MeshSurfaceSampler": "examples/en/math/MeshSurfaceSampler",
  356. "OBB": "examples/en/math/OBB"
  357. },
  358. "ConvexHull": {
  359. "Face": "examples/en/math/convexhull/Face",
  360. "HalfEdge": "examples/en/math/convexhull/HalfEdge",
  361. "ConvexHull": "examples/en/math/convexhull/ConvexHull",
  362. "VertexNode": "examples/en/math/convexhull/VertexNode",
  363. "VertexList": "examples/en/math/convexhull/VertexList"
  364. },
  365. "Renderers": {
  366. "CSS2DRenderer": "examples/en/renderers/CSS2DRenderer",
  367. "CSS3DRenderer": "examples/en/renderers/CSS3DRenderer",
  368. "SVGRenderer": "examples/en/renderers/SVGRenderer"
  369. },
  370. "Utils": {
  371. "BufferGeometryUtils": "examples/en/utils/BufferGeometryUtils",
  372. "CameraUtils": "examples/en/utils/CameraUtils",
  373. "SceneUtils": "examples/en/utils/SceneUtils",
  374. "SkeletonUtils": "examples/en/utils/SkeletonUtils"
  375. }
  376. },
  377. "Developer Reference": {
  378. "Polyfills": {
  379. "Polyfills": "api/en/Polyfills"
  380. },
  381. "WebGLRenderer": {
  382. "WebGLProgram": "api/en/renderers/webgl/WebGLProgram",
  383. "WebGLShader": "api/en/renderers/webgl/WebGLShader",
  384. "WebGLState": "api/en/renderers/webgl/WebGLState"
  385. }
  386. }
  387. },
  388. "ar": {
  389. "الكتيب": {
  390. "البدء": {
  391. "إنشاء مشهد": "manual/ar/introduction/Creating-a-scene",
  392. "التثبيت": "manual/ar/introduction/Installation",
  393. "دعم المتصفح": "manual/ar/introduction/Browser-support",
  394. "فحص توافق WebGL": "manual/ar/introduction/WebGL-compatibility-check",
  395. "كيف تدير الأشياء محليًا": "manual/ar/introduction/How-to-run-things-locally",
  396. "رسم خطوط": "manual/ar/introduction/Drawing-lines",
  397. "إنشاء نص": "manual/ar/introduction/Creating-text",
  398. "تحميل نماذج ثلاثية الأبعاد": "manual/ar/introduction/Loading-3D-models",
  399. "الأسئلة الشائعة": "manual/ar/introduction/FAQ",
  400. "روابط مفيدة": "manual/ar/introduction/Useful-links"
  401. },
  402. "الخطوات التالية": {
  403. "كيفية تحديث الأشياء": "manual/ar/introduction/How-to-update-things",
  404. "كيفية التخلص من الأشياء": "manual/ar/introduction/How-to-dispose-of-objects",
  405. "كيفية إنشاء محتوى VR": "manual/ar/introduction/How-to-create-VR-content",
  406. "كيفية استخدام المعالجة اللاحقة (post-processing)": "manual/ar/introduction/How-to-use-post-processing",
  407. "تحولات المصفوفة (Matrix transformations)": "manual/ar/introduction/Matrix-transformations",
  408. "نظام الحركات": "manual/ar/introduction/Animation-system"
  409. },
  410. "أدوات البناء": {
  411. "الاختبار مع NPM": "manual/ar/buildTools/Testing-with-NPM"
  412. }
  413. },
  414. "المرجع": {
  415. "الحركات": {
  416. "AnimationAction": "api/ar/animation/AnimationAction",
  417. "AnimationClip": "api/ar/animation/AnimationClip",
  418. "AnimationMixer": "api/ar/animation/AnimationMixer",
  419. "AnimationObjectGroup": "api/ar/animation/AnimationObjectGroup",
  420. "AnimationUtils": "api/ar/animation/AnimationUtils",
  421. "KeyframeTrack": "api/ar/animation/KeyframeTrack",
  422. "PropertyBinding": "api/ar/animation/PropertyBinding",
  423. "PropertyMixer": "api/ar/animation/PropertyMixer"
  424. },
  425. "الحركات / Tracks": {
  426. "BooleanKeyframeTrack": "api/ar/animation/tracks/BooleanKeyframeTrack",
  427. "ColorKeyframeTrack": "api/ar/animation/tracks/ColorKeyframeTrack",
  428. "NumberKeyframeTrack": "api/ar/animation/tracks/NumberKeyframeTrack",
  429. "QuaternionKeyframeTrack": "api/ar/animation/tracks/QuaternionKeyframeTrack",
  430. "StringKeyframeTrack": "api/ar/animation/tracks/StringKeyframeTrack",
  431. "VectorKeyframeTrack": "api/ar/animation/tracks/VectorKeyframeTrack"
  432. },
  433. "Audio": {
  434. "Audio": "api/ar/audio/Audio",
  435. "AudioAnalyser": "api/ar/audio/AudioAnalyser",
  436. "AudioContext": "api/ar/audio/AudioContext",
  437. "AudioListener": "api/ar/audio/AudioListener",
  438. "PositionalAudio": "api/ar/audio/PositionalAudio"
  439. },
  440. "Cameras": {
  441. "ArrayCamera": "api/ar/cameras/ArrayCamera",
  442. "Camera": "api/ar/cameras/Camera",
  443. "CubeCamera": "api/ar/cameras/CubeCamera"
  444. }
  445. }
  446. },
  447. "zh": {
  448. "手册": {
  449. "起步": {
  450. "创建一个场景": "manual/zh/introduction/Creating-a-scene",
  451. "安装": "manual/zh/introduction/Installation",
  452. "浏览器支持": "manual/zh/introduction/Browser-support",
  453. "WebGL兼容性检查": "manual/zh/introduction/WebGL-compatibility-check",
  454. "如何在本地运行Three.js": "manual/zh/introduction/How-to-run-things-locally",
  455. "画线": "manual/zh/introduction/Drawing-lines",
  456. "创建文字": "manual/zh/introduction/Creating-text",
  457. "载入3D模型": "manual/zh/introduction/Loading-3D-models",
  458. "常见问题": "manual/zh/introduction/FAQ",
  459. "一些有用的链接": "manual/zh/introduction/Useful-links"
  460. },
  461. "进阶": {
  462. "如何更新场景": "manual/zh/introduction/How-to-update-things",
  463. "如何废置对象": "manual/zh/introduction/How-to-dispose-of-objects",
  464. "如何创建VR内容": "manual/zh/introduction/How-to-create-VR-content",
  465. "如何使用后期处理": "manual/zh/introduction/How-to-use-post-processing",
  466. "矩阵变换": "manual/zh/introduction/Matrix-transformations",
  467. "动画系统": "manual/zh/introduction/Animation-system"
  468. },
  469. "构建工具": {
  470. "使用NPM进行测试": "manual/zh/buildTools/Testing-with-NPM"
  471. }
  472. },
  473. "参考": {
  474. "动画": {
  475. "AnimationAction": "api/zh/animation/AnimationAction",
  476. "AnimationClip": "api/zh/animation/AnimationClip",
  477. "AnimationMixer": "api/zh/animation/AnimationMixer",
  478. "AnimationObjectGroup": "api/zh/animation/AnimationObjectGroup",
  479. "AnimationUtils": "api/zh/animation/AnimationUtils",
  480. "KeyframeTrack": "api/zh/animation/KeyframeTrack",
  481. "PropertyBinding": "api/zh/animation/PropertyBinding",
  482. "PropertyMixer": "api/zh/animation/PropertyMixer"
  483. },
  484. "动画 / 轨道": {
  485. "BooleanKeyframeTrack": "api/zh/animation/tracks/BooleanKeyframeTrack",
  486. "ColorKeyframeTrack": "api/zh/animation/tracks/ColorKeyframeTrack",
  487. "NumberKeyframeTrack": "api/zh/animation/tracks/NumberKeyframeTrack",
  488. "QuaternionKeyframeTrack": "api/zh/animation/tracks/QuaternionKeyframeTrack",
  489. "StringKeyframeTrack": "api/zh/animation/tracks/StringKeyframeTrack",
  490. "VectorKeyframeTrack": "api/zh/animation/tracks/VectorKeyframeTrack"
  491. },
  492. "音频": {
  493. "Audio": "api/zh/audio/Audio",
  494. "AudioAnalyser": "api/zh/audio/AudioAnalyser",
  495. "AudioContext": "api/zh/audio/AudioContext",
  496. "AudioListener": "api/zh/audio/AudioListener",
  497. "PositionalAudio": "api/zh/audio/PositionalAudio"
  498. },
  499. "摄像机": {
  500. "ArrayCamera": "api/zh/cameras/ArrayCamera",
  501. "Camera": "api/zh/cameras/Camera",
  502. "CubeCamera": "api/zh/cameras/CubeCamera",
  503. "OrthographicCamera": "api/zh/cameras/OrthographicCamera",
  504. "PerspectiveCamera": "api/zh/cameras/PerspectiveCamera",
  505. "StereoCamera": "api/zh/cameras/StereoCamera"
  506. },
  507. "常量": {
  508. "Animation": "api/zh/constants/Animation",
  509. "Core": "api/zh/constants/Core",
  510. "CustomBlendingEquation": "api/zh/constants/CustomBlendingEquations",
  511. "Materials": "api/zh/constants/Materials",
  512. "Renderer": "api/zh/constants/Renderer",
  513. "Textures": "api/zh/constants/Textures"
  514. },
  515. "核心": {
  516. "BufferAttribute": "api/zh/core/BufferAttribute",
  517. "BufferGeometry": "api/zh/core/BufferGeometry",
  518. "Clock": "api/zh/core/Clock",
  519. "EventDispatcher": "api/zh/core/EventDispatcher",
  520. "GLBufferAttribute": "api/zh/core/GLBufferAttribute",
  521. "InstancedBufferAttribute": "api/zh/core/InstancedBufferAttribute",
  522. "InstancedBufferGeometry": "api/zh/core/InstancedBufferGeometry",
  523. "InstancedInterleavedBuffer": "api/zh/core/InstancedInterleavedBuffer",
  524. "InterleavedBuffer": "api/zh/core/InterleavedBuffer",
  525. "InterleavedBufferAttribute": "api/zh/core/InterleavedBufferAttribute",
  526. "Layers": "api/zh/core/Layers",
  527. "Object3D": "api/zh/core/Object3D",
  528. "Raycaster": "api/zh/core/Raycaster",
  529. "Uniform": "api/zh/core/Uniform"
  530. },
  531. "核心 / BufferAttributes": {
  532. "BufferAttribute Types": "api/zh/core/bufferAttributeTypes/BufferAttributeTypes"
  533. },
  534. "附件": {
  535. "Earcut": "api/zh/extras/Earcut",
  536. "ImageUtils": "api/zh/extras/ImageUtils",
  537. "PMREMGenerator": "api/zh/extras/PMREMGenerator",
  538. "ShapeUtils": "api/zh/extras/ShapeUtils"
  539. },
  540. "附件 / 核心": {
  541. "Curve": "api/zh/extras/core/Curve",
  542. "CurvePath": "api/zh/extras/core/CurvePath",
  543. "Font": "api/zh/extras/core/Font",
  544. "Interpolations": "api/zh/extras/core/Interpolations",
  545. "Path": "api/zh/extras/core/Path",
  546. "Shape": "api/zh/extras/core/Shape",
  547. "ShapePath": "api/zh/extras/core/ShapePath"
  548. },
  549. "附件 / 曲线": {
  550. "ArcCurve": "api/zh/extras/curves/ArcCurve",
  551. "CatmullRomCurve3": "api/zh/extras/curves/CatmullRomCurve3",
  552. "CubicBezierCurve": "api/zh/extras/curves/CubicBezierCurve",
  553. "CubicBezierCurve3": "api/zh/extras/curves/CubicBezierCurve3",
  554. "EllipseCurve": "api/zh/extras/curves/EllipseCurve",
  555. "LineCurve": "api/zh/extras/curves/LineCurve",
  556. "LineCurve3": "api/zh/extras/curves/LineCurve3",
  557. "QuadraticBezierCurve": "api/zh/extras/curves/QuadraticBezierCurve",
  558. "QuadraticBezierCurve3": "api/zh/extras/curves/QuadraticBezierCurve3",
  559. "SplineCurve": "api/zh/extras/curves/SplineCurve"
  560. },
  561. "附件 / 物体": {
  562. "ImmediateRenderObject": "api/zh/extras/objects/ImmediateRenderObject"
  563. },
  564. "几何体": {
  565. "BoxGeometry": "api/zh/geometries/BoxGeometry",
  566. "CircleGeometry": "api/zh/geometries/CircleGeometry",
  567. "ConeGeometry": "api/zh/geometries/ConeGeometry",
  568. "CylinderGeometry": "api/zh/geometries/CylinderGeometry",
  569. "DodecahedronGeometry": "api/zh/geometries/DodecahedronGeometry",
  570. "EdgesGeometry": "api/zh/geometries/EdgesGeometry",
  571. "ExtrudeGeometry": "api/zh/geometries/ExtrudeGeometry",
  572. "IcosahedronGeometry": "api/zh/geometries/IcosahedronGeometry",
  573. "LatheGeometry": "api/zh/geometries/LatheGeometry",
  574. "OctahedronGeometry": "api/zh/geometries/OctahedronGeometry",
  575. "ParametricGeometry": "api/zh/geometries/ParametricGeometry",
  576. "PlaneGeometry": "api/zh/geometries/PlaneGeometry",
  577. "PolyhedronGeometry": "api/zh/geometries/PolyhedronGeometry",
  578. "RingGeometry": "api/zh/geometries/RingGeometry",
  579. "ShapeGeometry": "api/zh/geometries/ShapeGeometry",
  580. "SphereGeometry": "api/zh/geometries/SphereGeometry",
  581. "TetrahedronGeometry": "api/zh/geometries/TetrahedronGeometry",
  582. "TextGeometry": "api/zh/geometries/TextGeometry",
  583. "TorusGeometry": "api/zh/geometries/TorusGeometry",
  584. "TorusKnotGeometry": "api/zh/geometries/TorusKnotGeometry",
  585. "TubeGeometry": "api/zh/geometries/TubeGeometry",
  586. "WireframeGeometry": "api/zh/geometries/WireframeGeometry"
  587. },
  588. "辅助对象": {
  589. "ArrowHelper": "api/zh/helpers/ArrowHelper",
  590. "AxesHelper": "api/zh/helpers/AxesHelper",
  591. "BoxHelper": "api/zh/helpers/BoxHelper",
  592. "Box3Helper": "api/zh/helpers/Box3Helper",
  593. "CameraHelper": "api/zh/helpers/CameraHelper",
  594. "DirectionalLightHelper": "api/zh/helpers/DirectionalLightHelper",
  595. "GridHelper": "api/zh/helpers/GridHelper",
  596. "PolarGridHelper": "api/zh/helpers/PolarGridHelper",
  597. "HemisphereLightHelper": "api/zh/helpers/HemisphereLightHelper",
  598. "PlaneHelper": "api/zh/helpers/PlaneHelper",
  599. "PointLightHelper": "api/zh/helpers/PointLightHelper",
  600. "SkeletonHelper": "api/zh/helpers/SkeletonHelper",
  601. "SpotLightHelper": "api/zh/helpers/SpotLightHelper"
  602. },
  603. "灯光": {
  604. "AmbientLight": "api/zh/lights/AmbientLight",
  605. "AmbientLightProbe": "api/zh/lights/AmbientLightProbe",
  606. "DirectionalLight": "api/zh/lights/DirectionalLight",
  607. "HemisphereLight": "api/zh/lights/HemisphereLight",
  608. "HemisphereLightProbe": "api/zh/lights/HemisphereLightProbe",
  609. "Light": "api/zh/lights/Light",
  610. "LightProbe": "api/zh/lights/LightProbe",
  611. "PointLight": "api/zh/lights/PointLight",
  612. "RectAreaLight": "api/zh/lights/RectAreaLight",
  613. "SpotLight": "api/zh/lights/SpotLight"
  614. },
  615. "灯光 / 阴影": {
  616. "LightShadow": "api/zh/lights/shadows/LightShadow",
  617. "PointLightShadow": "api/zh/lights/shadows/PointLightShadow",
  618. "DirectionalLightShadow": "api/zh/lights/shadows/DirectionalLightShadow",
  619. "SpotLightShadow": "api/zh/lights/shadows/SpotLightShadow"
  620. },
  621. "加载器": {
  622. "AnimationLoader": "api/zh/loaders/AnimationLoader",
  623. "AudioLoader": "api/zh/loaders/AudioLoader",
  624. "BufferGeometryLoader": "api/zh/loaders/BufferGeometryLoader",
  625. "Cache": "api/zh/loaders/Cache",
  626. "CompressedTextureLoader": "api/zh/loaders/CompressedTextureLoader",
  627. "CubeTextureLoader": "api/zh/loaders/CubeTextureLoader",
  628. "DataTextureLoader": "api/zh/loaders/DataTextureLoader",
  629. "FileLoader": "api/zh/loaders/FileLoader",
  630. "FontLoader": "api/zh/loaders/FontLoader",
  631. "ImageBitmapLoader": "api/zh/loaders/ImageBitmapLoader",
  632. "ImageLoader": "api/zh/loaders/ImageLoader",
  633. "Loader": "api/zh/loaders/Loader",
  634. "LoaderUtils": "api/zh/loaders/LoaderUtils",
  635. "MaterialLoader": "api/zh/loaders/MaterialLoader",
  636. "ObjectLoader": "api/zh/loaders/ObjectLoader",
  637. "TextureLoader": "api/zh/loaders/TextureLoader"
  638. },
  639. "加载器 / 管理器": {
  640. "DefaultLoadingManager": "api/zh/loaders/managers/DefaultLoadingManager",
  641. "LoadingManager": "api/zh/loaders/managers/LoadingManager"
  642. },
  643. "材质": {
  644. "LineBasicMaterial": "api/zh/materials/LineBasicMaterial",
  645. "LineDashedMaterial": "api/zh/materials/LineDashedMaterial",
  646. "Material": "api/zh/materials/Material",
  647. "MeshBasicMaterial": "api/zh/materials/MeshBasicMaterial",
  648. "MeshDepthMaterial": "api/zh/materials/MeshDepthMaterial",
  649. "MeshDistanceMaterial": "api/zh/materials/MeshDistanceMaterial",
  650. "MeshLambertMaterial": "api/zh/materials/MeshLambertMaterial",
  651. "MeshMatcapMaterial": "api/zh/materials/MeshMatcapMaterial",
  652. "MeshNormalMaterial": "api/zh/materials/MeshNormalMaterial",
  653. "MeshPhongMaterial": "api/zh/materials/MeshPhongMaterial",
  654. "MeshPhysicalMaterial": "api/zh/materials/MeshPhysicalMaterial",
  655. "MeshStandardMaterial": "api/zh/materials/MeshStandardMaterial",
  656. "MeshToonMaterial": "api/zh/materials/MeshToonMaterial",
  657. "PointsMaterial": "api/zh/materials/PointsMaterial",
  658. "RawShaderMaterial": "api/zh/materials/RawShaderMaterial",
  659. "ShaderMaterial": "api/zh/materials/ShaderMaterial",
  660. "ShadowMaterial": "api/zh/materials/ShadowMaterial",
  661. "SpriteMaterial": "api/zh/materials/SpriteMaterial"
  662. },
  663. "数学库": {
  664. "Box2": "api/zh/math/Box2",
  665. "Box3": "api/zh/math/Box3",
  666. "Color": "api/zh/math/Color",
  667. "Cylindrical": "api/zh/math/Cylindrical",
  668. "Euler": "api/zh/math/Euler",
  669. "Frustum": "api/zh/math/Frustum",
  670. "Interpolant": "api/zh/math/Interpolant",
  671. "Line3": "api/zh/math/Line3",
  672. "MathUtils": "api/zh/math/MathUtils",
  673. "Matrix3": "api/zh/math/Matrix3",
  674. "Matrix4": "api/zh/math/Matrix4",
  675. "Plane": "api/zh/math/Plane",
  676. "Quaternion": "api/zh/math/Quaternion",
  677. "Ray": "api/zh/math/Ray",
  678. "Sphere": "api/zh/math/Sphere",
  679. "Spherical": "api/zh/math/Spherical",
  680. "SphericalHarmonics3": "api/zh/math/SphericalHarmonics3",
  681. "Triangle": "api/zh/math/Triangle",
  682. "Vector2": "api/zh/math/Vector2",
  683. "Vector3": "api/zh/math/Vector3",
  684. "Vector4": "api/zh/math/Vector4"
  685. },
  686. "数学库 / 插值": {
  687. "CubicInterpolant": "api/zh/math/interpolants/CubicInterpolant",
  688. "DiscreteInterpolant": "api/zh/math/interpolants/DiscreteInterpolant",
  689. "LinearInterpolant": "api/zh/math/interpolants/LinearInterpolant",
  690. "QuaternionLinearInterpolant": "api/zh/math/interpolants/QuaternionLinearInterpolant"
  691. },
  692. "物体": {
  693. "Bone": "api/zh/objects/Bone",
  694. "Group": "api/zh/objects/Group",
  695. "InstancedMesh": "api/zh/objects/InstancedMesh",
  696. "Line": "api/zh/objects/Line",
  697. "LineLoop": "api/zh/objects/LineLoop",
  698. "LineSegments": "api/zh/objects/LineSegments",
  699. "LOD": "api/zh/objects/LOD",
  700. "Mesh": "api/zh/objects/Mesh",
  701. "Points": "api/zh/objects/Points",
  702. "Skeleton": "api/zh/objects/Skeleton",
  703. "SkinnedMesh": "api/zh/objects/SkinnedMesh",
  704. "Sprite": "api/zh/objects/Sprite"
  705. },
  706. "渲染器": {
  707. "WebGLMultipleRenderTargets": "api/zh/renderers/WebGLMultipleRenderTargets",
  708. "WebGLMultisampleRenderTarget": "api/zh/renderers/WebGLMultisampleRenderTarget",
  709. "WebGLRenderer": "api/zh/renderers/WebGLRenderer",
  710. "WebGL1Renderer": "api/zh/renderers/WebGL1Renderer",
  711. "WebGLRenderTarget": "api/zh/renderers/WebGLRenderTarget",
  712. "WebGLCubeRenderTarget": "api/zh/renderers/WebGLCubeRenderTarget"
  713. },
  714. "渲染器 / 着色器": {
  715. "ShaderChunk": "api/zh/renderers/shaders/ShaderChunk",
  716. "ShaderLib": "api/zh/renderers/shaders/ShaderLib",
  717. "UniformsLib": "api/zh/renderers/shaders/UniformsLib",
  718. "UniformsUtils": "api/zh/renderers/shaders/UniformsUtils"
  719. },
  720. "渲染器 / WebXR": {
  721. "WebXRManager": "api/zh/renderers/webxr/WebXRManager"
  722. },
  723. "场景": {
  724. "Fog": "api/zh/scenes/Fog",
  725. "FogExp2": "api/zh/scenes/FogExp2",
  726. "Scene": "api/zh/scenes/Scene"
  727. },
  728. "纹理贴图": {
  729. "CanvasTexture": "api/zh/textures/CanvasTexture",
  730. "CompressedTexture": "api/zh/textures/CompressedTexture",
  731. "CubeTexture": "api/zh/textures/CubeTexture",
  732. "DataTexture": "api/zh/textures/DataTexture",
  733. "DataTexture2DArray": "api/zh/textures/DataTexture2DArray",
  734. "DataTexture3D": "api/zh/textures/DataTexture3D",
  735. "DepthTexture": "api/zh/textures/DepthTexture",
  736. "Texture": "api/zh/textures/Texture",
  737. "VideoTexture": "api/zh/textures/VideoTexture"
  738. }
  739. },
  740. "示例": {
  741. "动画": {
  742. "CCDIKSolver": "examples/zh/animations/CCDIKSolver",
  743. "MMDAnimationHelper": "examples/zh/animations/MMDAnimationHelper",
  744. "MMDPhysics": "examples/zh/animations/MMDPhysics"
  745. },
  746. "控制": {
  747. "DeviceOrientationControls": "examples/zh/controls/DeviceOrientationControls",
  748. "DragControls": "examples/zh/controls/DragControls",
  749. "FirstPersonControls": "examples/zh/controls/FirstPersonControls",
  750. "FlyControls": "examples/zh/controls/FlyControls",
  751. "OrbitControls": "examples/zh/controls/OrbitControls",
  752. "PointerLockControls": "examples/zh/controls/PointerLockControls",
  753. "TrackballControls": "examples/zh/controls/TrackballControls",
  754. "TransformControls": "examples/zh/controls/TransformControls"
  755. },
  756. "几何体": {
  757. "ConvexGeometry": "examples/zh/geometries/ConvexGeometry",
  758. "DecalGeometry": "examples/zh/geometries/DecalGeometry"
  759. },
  760. "辅助对象": {
  761. "LightProbeHelper": "examples/zh/helpers/LightProbeHelper",
  762. "PositionalAudioHelper": "examples/zh/helpers/PositionalAudioHelper",
  763. "RectAreaLightHelper": "examples/zh/helpers/RectAreaLightHelper",
  764. "VertexNormalsHelper": "examples/zh/helpers/VertexNormalsHelper",
  765. "VertexTangentsHelper": "examples/zh/helpers/VertexTangentsHelper"
  766. },
  767. "灯光": {
  768. "LightProbeGenerator": "examples/zh/lights/LightProbeGenerator"
  769. },
  770. "加载器": {
  771. "BasisTextureLoader": "examples/zh/loaders/BasisTextureLoader",
  772. "DRACOLoader": "examples/zh/loaders/DRACOLoader",
  773. "GLTFLoader": "examples/zh/loaders/GLTFLoader",
  774. "MMDLoader": "examples/zh/loaders/MMDLoader",
  775. "MTLLoader": "examples/zh/loaders/MTLLoader",
  776. "OBJLoader": "examples/zh/loaders/OBJLoader",
  777. "PCDLoader": "examples/zh/loaders/PCDLoader",
  778. "PDBLoader": "examples/zh/loaders/PDBLoader",
  779. "PRWMLoader": "examples/zh/loaders/PRWMLoader",
  780. "SVGLoader": "examples/zh/loaders/SVGLoader",
  781. "TGALoader": "examples/zh/loaders/TGALoader"
  782. },
  783. "物体": {
  784. "Lensflare": "examples/zh/objects/Lensflare"
  785. },
  786. "后期处理": {
  787. "EffectComposer": "examples/zh/postprocessing/EffectComposer"
  788. },
  789. "导出器": {
  790. "GLTFExporter": "examples/zh/exporters/GLTFExporter",
  791. "PLYExporter": "examples/zh/exporters/PLYExporter",
  792. "ColladaExporter": "examples/zh/exporters/ColladaExporter"
  793. },
  794. "数学库": {
  795. "LookupTable": "examples/zh/math/Lut",
  796. "MeshSurfaceSampler": "examples/zh/math/MeshSurfaceSampler",
  797. "OBB": "examples/en/math/OBB"
  798. },
  799. "QuickHull": {
  800. "Face": "examples/zh/math/convexhull/Face",
  801. "HalfEdge": "examples/zh/math/convexhull/HalfEdge",
  802. "ConvexHull": "examples/zh/math/convexhull/ConvexHull",
  803. "VertexNode": "examples/zh/math/convexhull/VertexNode",
  804. "VertexList": "examples/zh/math/convexhull/VertexList"
  805. },
  806. "渲染器": {
  807. "CSS2DRenderer": "examples/zh/renderers/CSS2DRenderer",
  808. "CSS3DRenderer": "examples/zh/renderers/CSS3DRenderer",
  809. "SVGRenderer": "examples/zh/renderers/SVGRenderer"
  810. },
  811. "实用工具": {
  812. "BufferGeometryUtils": "examples/zh/utils/BufferGeometryUtils",
  813. "SceneUtils": "examples/zh/utils/SceneUtils",
  814. "SkeletonUtils": "examples/zh/utils/SkeletonUtils"
  815. }
  816. },
  817. "开发者参考": {
  818. "差异化支持": {
  819. "Polyfills": "api/zh/Polyfills"
  820. },
  821. "WebGL渲染器": {
  822. "WebGLProgram": "api/zh/renderers/webgl/WebGLProgram",
  823. "WebGLShader": "api/zh/renderers/webgl/WebGLShader",
  824. "WebGLState": "api/zh/renderers/webgl/WebGLState"
  825. }
  826. }
  827. },
  828. "ko": {
  829. "매뉴얼": {
  830. "시작하기": {
  831. "장면 만들기": "manual/ko/introduction/Creating-a-scene",
  832. "설치": "manual/ko/introduction/Installation",
  833. "브라우저 지원": "manual/ko/introduction/Browser-support",
  834. "WebGL 호환성 검사": "manual/ko/introduction/WebGL-compatibility-check",
  835. "로컬 환경에서 구동 방법": "manual/ko/introduction/How-to-run-things-locally",
  836. "선 그리기": "manual/ko/introduction/Drawing-lines",
  837. "텍스트 만들기": "manual/ko/introduction/Creating-text",
  838. "3D 모델 불러오기": "manual/ko/introduction/Loading-3D-models",
  839. "FAQ": "manual/ko/introduction/FAQ",
  840. "참고 링크": "manual/ko/introduction/Useful-links"
  841. },
  842. "심화 과정": {
  843. "오브젝트를 업데이트하는 방법": "manual/ko/introduction/How-to-update-things",
  844. "오브젝트를 폐기하는 방법": "manual/ko/introduction/How-to-dispose-of-objects",
  845. "VR 컨텐츠를 만드는 방법": "manual/ko/introduction/How-to-create-VR-content",
  846. "후처리 사용 방법": "manual/ko/introduction/How-to-use-post-processing",
  847. "행렬 변환": "manual/ko/introduction/Matrix-transformations",
  848. "애니메이션 시스템": "manual/ko/introduction/Animation-system"
  849. },
  850. "빌드 도구": {
  851. "NPM 테스트": "manual/ko/buildTools/Testing-with-NPM"
  852. }
  853. },
  854. "레퍼런스": {
  855. "애니메이션": {
  856. "AnimationAction": "api/ko/animation/AnimationAction",
  857. "AnimationAction": "api/ko/animation/AnimationAction",
  858. "AnimationClip": "api/ko/animation/AnimationClip",
  859. "AnimationMixer": "api/ko/animation/AnimationMixer",
  860. "AnimationObjectGroup": "api/ko/animation/AnimationObjectGroup",
  861. "AnimationUtils": "api/ko/animation/AnimationUtils",
  862. "KeyframeTrack": "api/ko/animation/KeyframeTrack",
  863. "PropertyBinding": "api/ko/animation/PropertyBinding",
  864. "PropertyMixer": "api/ko/animation/PropertyMixer"
  865. },
  866. "애니메이션 / 트랙": {
  867. "BooleanKeyframeTrack": "api/ko/animation/tracks/BooleanKeyframeTrack",
  868. "ColorKeyframeTrack": "api/ko/animation/tracks/ColorKeyframeTrack",
  869. "NumberKeyframeTrack": "api/ko/animation/tracks/NumberKeyframeTrack",
  870. "QuaternionKeyframeTrack": "api/ko/animation/tracks/QuaternionKeyframeTrack",
  871. "StringKeyframeTrack": "api/ko/animation/tracks/StringKeyframeTrack",
  872. "VectorKeyframeTrack": "api/ko/animation/tracks/VectorKeyframeTrack"
  873. },
  874. "오디오": {
  875. "Audio": "api/ko/audio/Audio",
  876. "AudioAnalyser": "api/ko/audio/AudioAnalyser",
  877. "AudioContext": "api/ko/audio/AudioContext",
  878. "AudioListener": "api/ko/audio/AudioListener",
  879. "PositionalAudio": "api/ko/audio/PositionalAudio"
  880. },
  881. "카메라": {
  882. "ArrayCamera": "api/ko/cameras/ArrayCamera",
  883. "Camera": "api/ko/cameras/Camera",
  884. "CubeCamera": "api/ko/cameras/CubeCamera",
  885. "OrthographicCamera": "api/ko/cameras/OrthographicCamera",
  886. "PerspectiveCamera": "api/ko/cameras/PerspectiveCamera",
  887. "StereoCamera": "api/ko/cameras/StereoCamera"
  888. },
  889. "상수": {
  890. "Animation": "api/ko/constants/Animation",
  891. "Core": "api/ko/constants/Core",
  892. "CustomBlendingEquation": "api/ko/constants/CustomBlendingEquations",
  893. "Materials": "api/ko/constants/Materials",
  894. "Renderer": "api/ko/constants/Renderer",
  895. "Textures": "api/ko/constants/Textures"
  896. }
  897. },
  898. "예제": {
  899. "컨트롤": {
  900. "DeviceOrientationControls": "examples/ko/controls/DeviceOrientationControls",
  901. "DragControls": "examples/ko/controls/DragControls",
  902. "FirstPersonControls": "examples/ko/controls/FirstPersonControls",
  903. "FlyControls": "examples/ko/controls/FlyControls",
  904. "OrbitControls": "examples/ko/controls/OrbitControls",
  905. "PointerLockControls": "examples/ko/controls/PointerLockControls",
  906. "TrackballControls": "examples/ko/controls/TrackballControls",
  907. "TransformControls": "examples/ko/controls/TransformControls"
  908. }
  909. }
  910. },
  911. "ja": {
  912. "マニュアル": {
  913. "はじめてみましょう": {
  914. "シーンの作成": "manual/ja/introduction/Creating-a-scene",
  915. "インストールの方法": "manual/ja/introduction/Installation",
  916. "サポートしているブラウザ": "manual/ja/introduction/Browser-support",
  917. "WebGLの互換性の確認": "manual/ja/introduction/WebGL-compatibility-check",
  918. "localで実行する方法": "manual/ja/introduction/How-to-run-things-locally",
  919. "線を引く": "manual/ja/introduction/Drawing-lines",
  920. "テキストを作成する": "manual/ja/introduction/Creating-text",
  921. "3Dモデルをロードする": "manual/ja/introduction/Loading-3D-models",
  922. "ライブラリとプラグイン": "manual/ja/introduction/Libraries-and-Plugins",
  923. "FAQ": "manual/ja/introduction/FAQ",
  924. "役にたつリンク集": "manual/ja/introduction/Useful-links"
  925. },
  926. "次の段階": {
  927. "更新の仕方": "manual/ja/introduction/How-to-update-things",
  928. "オブジェクトを廃棄する方法": "manual/ja/introduction/How-to-dispose-of-objects",
  929. "VRコンテンツの作り方": "manual/ja/introduction/How-to-create-VR-content",
  930. "post-processingの使い方": "manual/ja/introduction/How-to-use-post-processing",
  931. "行列の変換": "manual/ja/introduction/Matrix-transformations",
  932. "アニメーションシステム": "manual/ja/introduction/Animation-system"
  933. },
  934. "ビルドツール": {
  935. "NPMでテストを実行する": "manual/ja/buildTools/Testing-with-NPM"
  936. }
  937. }
  938. }
  939. }