list.json 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082
  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. "WebGL compatibility check": "manual/en/introduction/WebGL-compatibility-check",
  8. "How to run things locally": "manual/en/introduction/How-to-run-things-locally",
  9. "Drawing lines": "manual/en/introduction/Drawing-lines",
  10. "Creating text": "manual/en/introduction/Creating-text",
  11. "Loading 3D models": "manual/en/introduction/Loading-3D-models",
  12. "Libraries and Plugins": "manual/en/introduction/Libraries-and-Plugins",
  13. "FAQ": "manual/en/introduction/FAQ",
  14. "Useful links": "manual/en/introduction/Useful-links"
  15. },
  16. "Next Steps": {
  17. "How to update things": "manual/en/introduction/How-to-update-things",
  18. "How to dispose of objects": "manual/en/introduction/How-to-dispose-of-objects",
  19. "How to create VR content": "manual/en/introduction/How-to-create-VR-content",
  20. "How to use post-processing": "manual/en/introduction/How-to-use-post-processing",
  21. "Matrix transformations": "manual/en/introduction/Matrix-transformations",
  22. "Animation system": "manual/en/introduction/Animation-system",
  23. "Color management": "manual/en/introduction/Color-management"
  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. "BufferAttributeUsage": "api/en/constants/BufferAttributeUsage",
  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. "EventDispatcher": "api/en/core/EventDispatcher",
  77. "GLBufferAttribute": "api/en/core/GLBufferAttribute",
  78. "InstancedBufferAttribute": "api/en/core/InstancedBufferAttribute",
  79. "InstancedBufferGeometry": "api/en/core/InstancedBufferGeometry",
  80. "InstancedInterleavedBuffer": "api/en/core/InstancedInterleavedBuffer",
  81. "InterleavedBuffer": "api/en/core/InterleavedBuffer",
  82. "InterleavedBufferAttribute": "api/en/core/InterleavedBufferAttribute",
  83. "Layers": "api/en/core/Layers",
  84. "Object3D": "api/en/core/Object3D",
  85. "Raycaster": "api/en/core/Raycaster",
  86. "Uniform": "api/en/core/Uniform"
  87. },
  88. "Core / BufferAttributes": {
  89. "BufferAttribute Types": "api/en/core/bufferAttributeTypes/BufferAttributeTypes"
  90. },
  91. "Extras": {
  92. "DataUtils": "api/en/extras/DataUtils",
  93. "Earcut": "api/en/extras/Earcut",
  94. "ImageUtils": "api/en/extras/ImageUtils",
  95. "PMREMGenerator": "api/en/extras/PMREMGenerator",
  96. "ShapeUtils": "api/en/extras/ShapeUtils"
  97. },
  98. "Extras / Core": {
  99. "Curve": "api/en/extras/core/Curve",
  100. "CurvePath": "api/en/extras/core/CurvePath",
  101. "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. "Geometries": {
  119. "BoxGeometry": "api/en/geometries/BoxGeometry",
  120. "CapsuleGeometry": "api/en/geometries/CapsuleGeometry",
  121. "CircleGeometry": "api/en/geometries/CircleGeometry",
  122. "ConeGeometry": "api/en/geometries/ConeGeometry",
  123. "CylinderGeometry": "api/en/geometries/CylinderGeometry",
  124. "DodecahedronGeometry": "api/en/geometries/DodecahedronGeometry",
  125. "EdgesGeometry": "api/en/geometries/EdgesGeometry",
  126. "ExtrudeGeometry": "api/en/geometries/ExtrudeGeometry",
  127. "IcosahedronGeometry": "api/en/geometries/IcosahedronGeometry",
  128. "LatheGeometry": "api/en/geometries/LatheGeometry",
  129. "OctahedronGeometry": "api/en/geometries/OctahedronGeometry",
  130. "PlaneGeometry": "api/en/geometries/PlaneGeometry",
  131. "PolyhedronGeometry": "api/en/geometries/PolyhedronGeometry",
  132. "RingGeometry": "api/en/geometries/RingGeometry",
  133. "ShapeGeometry": "api/en/geometries/ShapeGeometry",
  134. "SphereGeometry": "api/en/geometries/SphereGeometry",
  135. "TetrahedronGeometry": "api/en/geometries/TetrahedronGeometry",
  136. "TorusGeometry": "api/en/geometries/TorusGeometry",
  137. "TorusKnotGeometry": "api/en/geometries/TorusKnotGeometry",
  138. "TubeGeometry": "api/en/geometries/TubeGeometry",
  139. "WireframeGeometry": "api/en/geometries/WireframeGeometry"
  140. },
  141. "Helpers": {
  142. "ArrowHelper": "api/en/helpers/ArrowHelper",
  143. "AxesHelper": "api/en/helpers/AxesHelper",
  144. "BoxHelper": "api/en/helpers/BoxHelper",
  145. "Box3Helper": "api/en/helpers/Box3Helper",
  146. "CameraHelper": "api/en/helpers/CameraHelper",
  147. "DirectionalLightHelper": "api/en/helpers/DirectionalLightHelper",
  148. "GridHelper": "api/en/helpers/GridHelper",
  149. "PolarGridHelper": "api/en/helpers/PolarGridHelper",
  150. "HemisphereLightHelper": "api/en/helpers/HemisphereLightHelper",
  151. "PlaneHelper": "api/en/helpers/PlaneHelper",
  152. "PointLightHelper": "api/en/helpers/PointLightHelper",
  153. "SkeletonHelper": "api/en/helpers/SkeletonHelper",
  154. "SpotLightHelper": "api/en/helpers/SpotLightHelper"
  155. },
  156. "Lights": {
  157. "AmbientLight": "api/en/lights/AmbientLight",
  158. "AmbientLightProbe": "api/en/lights/AmbientLightProbe",
  159. "DirectionalLight": "api/en/lights/DirectionalLight",
  160. "HemisphereLight": "api/en/lights/HemisphereLight",
  161. "HemisphereLightProbe": "api/en/lights/HemisphereLightProbe",
  162. "Light": "api/en/lights/Light",
  163. "LightProbe": "api/en/lights/LightProbe",
  164. "PointLight": "api/en/lights/PointLight",
  165. "RectAreaLight": "api/en/lights/RectAreaLight",
  166. "SpotLight": "api/en/lights/SpotLight"
  167. },
  168. "Lights / Shadows": {
  169. "LightShadow": "api/en/lights/shadows/LightShadow",
  170. "PointLightShadow": "api/en/lights/shadows/PointLightShadow",
  171. "DirectionalLightShadow": "api/en/lights/shadows/DirectionalLightShadow",
  172. "SpotLightShadow": "api/en/lights/shadows/SpotLightShadow"
  173. },
  174. "Loaders": {
  175. "AnimationLoader": "api/en/loaders/AnimationLoader",
  176. "AudioLoader": "api/en/loaders/AudioLoader",
  177. "BufferGeometryLoader": "api/en/loaders/BufferGeometryLoader",
  178. "Cache": "api/en/loaders/Cache",
  179. "CompressedTextureLoader": "api/en/loaders/CompressedTextureLoader",
  180. "CubeTextureLoader": "api/en/loaders/CubeTextureLoader",
  181. "DataTextureLoader": "api/en/loaders/DataTextureLoader",
  182. "FileLoader": "api/en/loaders/FileLoader",
  183. "ImageBitmapLoader": "api/en/loaders/ImageBitmapLoader",
  184. "ImageLoader": "api/en/loaders/ImageLoader",
  185. "Loader": "api/en/loaders/Loader",
  186. "LoaderUtils": "api/en/loaders/LoaderUtils",
  187. "MaterialLoader": "api/en/loaders/MaterialLoader",
  188. "ObjectLoader": "api/en/loaders/ObjectLoader",
  189. "TextureLoader": "api/en/loaders/TextureLoader"
  190. },
  191. "Loaders / Managers": {
  192. "DefaultLoadingManager": "api/en/loaders/managers/DefaultLoadingManager",
  193. "LoadingManager": "api/en/loaders/managers/LoadingManager"
  194. },
  195. "Materials": {
  196. "LineBasicMaterial": "api/en/materials/LineBasicMaterial",
  197. "LineDashedMaterial": "api/en/materials/LineDashedMaterial",
  198. "Material": "api/en/materials/Material",
  199. "MeshBasicMaterial": "api/en/materials/MeshBasicMaterial",
  200. "MeshDepthMaterial": "api/en/materials/MeshDepthMaterial",
  201. "MeshDistanceMaterial": "api/en/materials/MeshDistanceMaterial",
  202. "MeshLambertMaterial": "api/en/materials/MeshLambertMaterial",
  203. "MeshMatcapMaterial": "api/en/materials/MeshMatcapMaterial",
  204. "MeshNormalMaterial": "api/en/materials/MeshNormalMaterial",
  205. "MeshPhongMaterial": "api/en/materials/MeshPhongMaterial",
  206. "MeshPhysicalMaterial": "api/en/materials/MeshPhysicalMaterial",
  207. "MeshStandardMaterial": "api/en/materials/MeshStandardMaterial",
  208. "MeshToonMaterial": "api/en/materials/MeshToonMaterial",
  209. "PointsMaterial": "api/en/materials/PointsMaterial",
  210. "RawShaderMaterial": "api/en/materials/RawShaderMaterial",
  211. "ShaderMaterial": "api/en/materials/ShaderMaterial",
  212. "ShadowMaterial": "api/en/materials/ShadowMaterial",
  213. "SpriteMaterial": "api/en/materials/SpriteMaterial"
  214. },
  215. "Math": {
  216. "Box2": "api/en/math/Box2",
  217. "Box3": "api/en/math/Box3",
  218. "Color": "api/en/math/Color",
  219. "Cylindrical": "api/en/math/Cylindrical",
  220. "Euler": "api/en/math/Euler",
  221. "Frustum": "api/en/math/Frustum",
  222. "Interpolant": "api/en/math/Interpolant",
  223. "Line3": "api/en/math/Line3",
  224. "MathUtils": "api/en/math/MathUtils",
  225. "Matrix3": "api/en/math/Matrix3",
  226. "Matrix4": "api/en/math/Matrix4",
  227. "Plane": "api/en/math/Plane",
  228. "Quaternion": "api/en/math/Quaternion",
  229. "Ray": "api/en/math/Ray",
  230. "Sphere": "api/en/math/Sphere",
  231. "Spherical": "api/en/math/Spherical",
  232. "SphericalHarmonics3": "api/en/math/SphericalHarmonics3",
  233. "Triangle": "api/en/math/Triangle",
  234. "Vector2": "api/en/math/Vector2",
  235. "Vector3": "api/en/math/Vector3",
  236. "Vector4": "api/en/math/Vector4"
  237. },
  238. "Math / Interpolants": {
  239. "CubicInterpolant": "api/en/math/interpolants/CubicInterpolant",
  240. "DiscreteInterpolant": "api/en/math/interpolants/DiscreteInterpolant",
  241. "LinearInterpolant": "api/en/math/interpolants/LinearInterpolant",
  242. "QuaternionLinearInterpolant": "api/en/math/interpolants/QuaternionLinearInterpolant"
  243. },
  244. "Objects": {
  245. "Bone": "api/en/objects/Bone",
  246. "Group": "api/en/objects/Group",
  247. "InstancedMesh": "api/en/objects/InstancedMesh",
  248. "Line": "api/en/objects/Line",
  249. "LineLoop": "api/en/objects/LineLoop",
  250. "LineSegments": "api/en/objects/LineSegments",
  251. "LOD": "api/en/objects/LOD",
  252. "Mesh": "api/en/objects/Mesh",
  253. "Points": "api/en/objects/Points",
  254. "Skeleton": "api/en/objects/Skeleton",
  255. "SkinnedMesh": "api/en/objects/SkinnedMesh",
  256. "Sprite": "api/en/objects/Sprite"
  257. },
  258. "Renderers": {
  259. "WebGLMultipleRenderTargets": "api/en/renderers/WebGLMultipleRenderTargets",
  260. "WebGLRenderer": "api/en/renderers/WebGLRenderer",
  261. "WebGL1Renderer": "api/en/renderers/WebGL1Renderer",
  262. "WebGLRenderTarget": "api/en/renderers/WebGLRenderTarget",
  263. "WebGL3DRenderTarget": "api/en/renderers/WebGL3DRenderTarget",
  264. "WebGLArrayRenderTarget": "api/en/renderers/WebGLArrayRenderTarget",
  265. "WebGLCubeRenderTarget": "api/en/renderers/WebGLCubeRenderTarget"
  266. },
  267. "Renderers / Shaders": {
  268. "ShaderChunk": "api/en/renderers/shaders/ShaderChunk",
  269. "ShaderLib": "api/en/renderers/shaders/ShaderLib",
  270. "UniformsLib": "api/en/renderers/shaders/UniformsLib",
  271. "UniformsUtils": "api/en/renderers/shaders/UniformsUtils"
  272. },
  273. "Renderers / WebXR": {
  274. "WebXRManager": "api/en/renderers/webxr/WebXRManager"
  275. },
  276. "Scenes": {
  277. "Fog": "api/en/scenes/Fog",
  278. "FogExp2": "api/en/scenes/FogExp2",
  279. "Scene": "api/en/scenes/Scene"
  280. },
  281. "Textures": {
  282. "CanvasTexture": "api/en/textures/CanvasTexture",
  283. "CompressedTexture": "api/en/textures/CompressedTexture",
  284. "CompressedArrayTexture": "api/en/textures/CompressedArrayTexture",
  285. "CubeTexture": "api/en/textures/CubeTexture",
  286. "Data3DTexture": "api/en/textures/Data3DTexture",
  287. "DataArrayTexture": "api/en/textures/DataArrayTexture",
  288. "DataTexture": "api/en/textures/DataTexture",
  289. "DepthTexture": "api/en/textures/DepthTexture",
  290. "FramebufferTexture": "api/en/textures/FramebufferTexture",
  291. "Source": "api/en/textures/Source",
  292. "Texture": "api/en/textures/Texture",
  293. "VideoTexture": "api/en/textures/VideoTexture"
  294. }
  295. },
  296. "Addons": {
  297. "Animations": {
  298. "CCDIKSolver": "examples/en/animations/CCDIKSolver",
  299. "MMDAnimationHelper": "examples/en/animations/MMDAnimationHelper",
  300. "MMDPhysics": "examples/en/animations/MMDPhysics"
  301. },
  302. "Controls": {
  303. "ArcballControls": "examples/en/controls/ArcballControls",
  304. "DragControls": "examples/en/controls/DragControls",
  305. "FirstPersonControls": "examples/en/controls/FirstPersonControls",
  306. "FlyControls": "examples/en/controls/FlyControls",
  307. "OrbitControls": "examples/en/controls/OrbitControls",
  308. "PointerLockControls": "examples/en/controls/PointerLockControls",
  309. "TrackballControls": "examples/en/controls/TrackballControls",
  310. "TransformControls": "examples/en/controls/TransformControls"
  311. },
  312. "Geometries": {
  313. "ConvexGeometry": "examples/en/geometries/ConvexGeometry",
  314. "DecalGeometry": "examples/en/geometries/DecalGeometry",
  315. "ParametricGeometry": "examples/en/geometries/ParametricGeometry",
  316. "TextGeometry": "examples/en/geometries/TextGeometry"
  317. },
  318. "Helpers": {
  319. "LightProbeHelper": "examples/en/helpers/LightProbeHelper",
  320. "PositionalAudioHelper": "examples/en/helpers/PositionalAudioHelper",
  321. "RectAreaLightHelper": "examples/en/helpers/RectAreaLightHelper",
  322. "VertexNormalsHelper": "examples/en/helpers/VertexNormalsHelper",
  323. "VertexTangentsHelper": "examples/en/helpers/VertexTangentsHelper"
  324. },
  325. "Lights": {
  326. "LightProbeGenerator": "examples/en/lights/LightProbeGenerator"
  327. },
  328. "Loaders": {
  329. "3DMLoader": "examples/en/loaders/3DMLoader",
  330. "DRACOLoader": "examples/en/loaders/DRACOLoader",
  331. "FontLoader": "examples/en/loaders/FontLoader",
  332. "GLTFLoader": "examples/en/loaders/GLTFLoader",
  333. "KTX2Loader": "examples/en/loaders/KTX2Loader",
  334. "LDrawLoader": "examples/en/loaders/LDrawLoader",
  335. "MMDLoader": "examples/en/loaders/MMDLoader",
  336. "MTLLoader": "examples/en/loaders/MTLLoader",
  337. "OBJLoader": "examples/en/loaders/OBJLoader",
  338. "PCDLoader": "examples/en/loaders/PCDLoader",
  339. "PDBLoader": "examples/en/loaders/PDBLoader",
  340. "PRWMLoader": "examples/en/loaders/PRWMLoader",
  341. "SVGLoader": "examples/en/loaders/SVGLoader",
  342. "TGALoader": "examples/en/loaders/TGALoader"
  343. },
  344. "Objects": {
  345. "Lensflare": "examples/en/objects/Lensflare"
  346. },
  347. "Post-Processing": {
  348. "EffectComposer": "examples/en/postprocessing/EffectComposer"
  349. },
  350. "Exporters": {
  351. "ColladaExporter": "examples/en/exporters/ColladaExporter",
  352. "DRACOExporter": "examples/en/exporters/DRACOExporter",
  353. "EXRExporter": "examples/en/exporters/EXRExporter",
  354. "GLTFExporter": "examples/en/exporters/GLTFExporter",
  355. "OBJExporter": "examples/en/exporters/OBJExporter",
  356. "PLYExporter": "examples/en/exporters/PLYExporter",
  357. "STLExporter": "examples/en/exporters/STLExporter"
  358. },
  359. "Math": {
  360. "LookupTable": "examples/en/math/Lut",
  361. "MeshSurfaceSampler": "examples/en/math/MeshSurfaceSampler",
  362. "OBB": "examples/en/math/OBB"
  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. "CameraUtils": "examples/en/utils/CameraUtils",
  379. "SceneUtils": "examples/en/utils/SceneUtils",
  380. "SkeletonUtils": "examples/en/utils/SkeletonUtils"
  381. }
  382. },
  383. "Developer Reference": {
  384. "WebGLRenderer": {
  385. "WebGLProgram": "api/en/renderers/webgl/WebGLProgram"
  386. }
  387. }
  388. },
  389. "ar": {
  390. "الكتيب": {
  391. "البدء": {
  392. "إنشاء مشهد": "manual/ar/introduction/Creating-a-scene",
  393. "التثبيت": "manual/ar/introduction/Installation",
  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. "WebGL兼容性检查": "manual/zh/introduction/WebGL-compatibility-check",
  453. "如何在本地运行Three.js": "manual/zh/introduction/How-to-run-things-locally",
  454. "画线": "manual/zh/introduction/Drawing-lines",
  455. "创建文字": "manual/zh/introduction/Creating-text",
  456. "载入3D模型": "manual/zh/introduction/Loading-3D-models",
  457. "常见问题": "manual/zh/introduction/FAQ",
  458. "一些有用的链接": "manual/zh/introduction/Useful-links"
  459. },
  460. "进阶": {
  461. "如何更新场景": "manual/zh/introduction/How-to-update-things",
  462. "如何废置对象": "manual/zh/introduction/How-to-dispose-of-objects",
  463. "如何创建VR内容": "manual/zh/introduction/How-to-create-VR-content",
  464. "如何使用后期处理": "manual/zh/introduction/How-to-use-post-processing",
  465. "矩阵变换": "manual/zh/introduction/Matrix-transformations",
  466. "动画系统": "manual/zh/introduction/Animation-system"
  467. },
  468. "构建工具": {
  469. "使用NPM进行测试": "manual/zh/buildTools/Testing-with-NPM"
  470. }
  471. },
  472. "参考": {
  473. "动画": {
  474. "AnimationAction": "api/zh/animation/AnimationAction",
  475. "AnimationClip": "api/zh/animation/AnimationClip",
  476. "AnimationMixer": "api/zh/animation/AnimationMixer",
  477. "AnimationObjectGroup": "api/zh/animation/AnimationObjectGroup",
  478. "AnimationUtils": "api/zh/animation/AnimationUtils",
  479. "KeyframeTrack": "api/zh/animation/KeyframeTrack",
  480. "PropertyBinding": "api/zh/animation/PropertyBinding",
  481. "PropertyMixer": "api/zh/animation/PropertyMixer"
  482. },
  483. "动画 / 轨道": {
  484. "BooleanKeyframeTrack": "api/zh/animation/tracks/BooleanKeyframeTrack",
  485. "ColorKeyframeTrack": "api/zh/animation/tracks/ColorKeyframeTrack",
  486. "NumberKeyframeTrack": "api/zh/animation/tracks/NumberKeyframeTrack",
  487. "QuaternionKeyframeTrack": "api/zh/animation/tracks/QuaternionKeyframeTrack",
  488. "StringKeyframeTrack": "api/zh/animation/tracks/StringKeyframeTrack",
  489. "VectorKeyframeTrack": "api/zh/animation/tracks/VectorKeyframeTrack"
  490. },
  491. "音频": {
  492. "Audio": "api/zh/audio/Audio",
  493. "AudioAnalyser": "api/zh/audio/AudioAnalyser",
  494. "AudioContext": "api/zh/audio/AudioContext",
  495. "AudioListener": "api/zh/audio/AudioListener",
  496. "PositionalAudio": "api/zh/audio/PositionalAudio"
  497. },
  498. "摄像机": {
  499. "ArrayCamera": "api/zh/cameras/ArrayCamera",
  500. "Camera": "api/zh/cameras/Camera",
  501. "CubeCamera": "api/zh/cameras/CubeCamera",
  502. "OrthographicCamera": "api/zh/cameras/OrthographicCamera",
  503. "PerspectiveCamera": "api/zh/cameras/PerspectiveCamera",
  504. "StereoCamera": "api/zh/cameras/StereoCamera"
  505. },
  506. "常量": {
  507. "Animation": "api/zh/constants/Animation",
  508. "Core": "api/zh/constants/Core",
  509. "CustomBlendingEquation": "api/zh/constants/CustomBlendingEquations",
  510. "Materials": "api/zh/constants/Materials",
  511. "Renderer": "api/zh/constants/Renderer",
  512. "Textures": "api/zh/constants/Textures"
  513. },
  514. "核心": {
  515. "BufferAttribute": "api/zh/core/BufferAttribute",
  516. "BufferGeometry": "api/zh/core/BufferGeometry",
  517. "Clock": "api/zh/core/Clock",
  518. "EventDispatcher": "api/zh/core/EventDispatcher",
  519. "GLBufferAttribute": "api/zh/core/GLBufferAttribute",
  520. "InstancedBufferAttribute": "api/zh/core/InstancedBufferAttribute",
  521. "InstancedBufferGeometry": "api/zh/core/InstancedBufferGeometry",
  522. "InstancedInterleavedBuffer": "api/zh/core/InstancedInterleavedBuffer",
  523. "InterleavedBuffer": "api/zh/core/InterleavedBuffer",
  524. "InterleavedBufferAttribute": "api/zh/core/InterleavedBufferAttribute",
  525. "Layers": "api/zh/core/Layers",
  526. "Object3D": "api/zh/core/Object3D",
  527. "Raycaster": "api/zh/core/Raycaster",
  528. "Uniform": "api/zh/core/Uniform"
  529. },
  530. "核心 / BufferAttributes": {
  531. "BufferAttribute Types": "api/zh/core/bufferAttributeTypes/BufferAttributeTypes"
  532. },
  533. "附件": {
  534. "Earcut": "api/zh/extras/Earcut",
  535. "ImageUtils": "api/zh/extras/ImageUtils",
  536. "PMREMGenerator": "api/zh/extras/PMREMGenerator",
  537. "ShapeUtils": "api/zh/extras/ShapeUtils"
  538. },
  539. "附件 / 核心": {
  540. "Curve": "api/zh/extras/core/Curve",
  541. "CurvePath": "api/zh/extras/core/CurvePath",
  542. "Interpolations": "api/zh/extras/core/Interpolations",
  543. "Path": "api/zh/extras/core/Path",
  544. "Shape": "api/zh/extras/core/Shape",
  545. "ShapePath": "api/zh/extras/core/ShapePath"
  546. },
  547. "附件 / 曲线": {
  548. "ArcCurve": "api/zh/extras/curves/ArcCurve",
  549. "CatmullRomCurve3": "api/zh/extras/curves/CatmullRomCurve3",
  550. "CubicBezierCurve": "api/zh/extras/curves/CubicBezierCurve",
  551. "CubicBezierCurve3": "api/zh/extras/curves/CubicBezierCurve3",
  552. "EllipseCurve": "api/zh/extras/curves/EllipseCurve",
  553. "LineCurve": "api/zh/extras/curves/LineCurve",
  554. "LineCurve3": "api/zh/extras/curves/LineCurve3",
  555. "QuadraticBezierCurve": "api/zh/extras/curves/QuadraticBezierCurve",
  556. "QuadraticBezierCurve3": "api/zh/extras/curves/QuadraticBezierCurve3",
  557. "SplineCurve": "api/zh/extras/curves/SplineCurve"
  558. },
  559. "几何体": {
  560. "BoxGeometry": "api/zh/geometries/BoxGeometry",
  561. "CircleGeometry": "api/zh/geometries/CircleGeometry",
  562. "ConeGeometry": "api/zh/geometries/ConeGeometry",
  563. "CylinderGeometry": "api/zh/geometries/CylinderGeometry",
  564. "DodecahedronGeometry": "api/zh/geometries/DodecahedronGeometry",
  565. "EdgesGeometry": "api/zh/geometries/EdgesGeometry",
  566. "ExtrudeGeometry": "api/zh/geometries/ExtrudeGeometry",
  567. "IcosahedronGeometry": "api/zh/geometries/IcosahedronGeometry",
  568. "LatheGeometry": "api/zh/geometries/LatheGeometry",
  569. "OctahedronGeometry": "api/zh/geometries/OctahedronGeometry",
  570. "PlaneGeometry": "api/zh/geometries/PlaneGeometry",
  571. "PolyhedronGeometry": "api/zh/geometries/PolyhedronGeometry",
  572. "RingGeometry": "api/zh/geometries/RingGeometry",
  573. "ShapeGeometry": "api/zh/geometries/ShapeGeometry",
  574. "SphereGeometry": "api/zh/geometries/SphereGeometry",
  575. "TetrahedronGeometry": "api/zh/geometries/TetrahedronGeometry",
  576. "TorusGeometry": "api/zh/geometries/TorusGeometry",
  577. "TorusKnotGeometry": "api/zh/geometries/TorusKnotGeometry",
  578. "TubeGeometry": "api/zh/geometries/TubeGeometry",
  579. "WireframeGeometry": "api/zh/geometries/WireframeGeometry"
  580. },
  581. "辅助对象": {
  582. "ArrowHelper": "api/zh/helpers/ArrowHelper",
  583. "AxesHelper": "api/zh/helpers/AxesHelper",
  584. "BoxHelper": "api/zh/helpers/BoxHelper",
  585. "Box3Helper": "api/zh/helpers/Box3Helper",
  586. "CameraHelper": "api/zh/helpers/CameraHelper",
  587. "DirectionalLightHelper": "api/zh/helpers/DirectionalLightHelper",
  588. "GridHelper": "api/zh/helpers/GridHelper",
  589. "PolarGridHelper": "api/zh/helpers/PolarGridHelper",
  590. "HemisphereLightHelper": "api/zh/helpers/HemisphereLightHelper",
  591. "PlaneHelper": "api/zh/helpers/PlaneHelper",
  592. "PointLightHelper": "api/zh/helpers/PointLightHelper",
  593. "SkeletonHelper": "api/zh/helpers/SkeletonHelper",
  594. "SpotLightHelper": "api/zh/helpers/SpotLightHelper"
  595. },
  596. "灯光": {
  597. "AmbientLight": "api/zh/lights/AmbientLight",
  598. "AmbientLightProbe": "api/zh/lights/AmbientLightProbe",
  599. "DirectionalLight": "api/zh/lights/DirectionalLight",
  600. "HemisphereLight": "api/zh/lights/HemisphereLight",
  601. "HemisphereLightProbe": "api/zh/lights/HemisphereLightProbe",
  602. "Light": "api/zh/lights/Light",
  603. "LightProbe": "api/zh/lights/LightProbe",
  604. "PointLight": "api/zh/lights/PointLight",
  605. "RectAreaLight": "api/zh/lights/RectAreaLight",
  606. "SpotLight": "api/zh/lights/SpotLight"
  607. },
  608. "灯光 / 阴影": {
  609. "LightShadow": "api/zh/lights/shadows/LightShadow",
  610. "PointLightShadow": "api/zh/lights/shadows/PointLightShadow",
  611. "DirectionalLightShadow": "api/zh/lights/shadows/DirectionalLightShadow",
  612. "SpotLightShadow": "api/zh/lights/shadows/SpotLightShadow"
  613. },
  614. "加载器": {
  615. "AnimationLoader": "api/zh/loaders/AnimationLoader",
  616. "AudioLoader": "api/zh/loaders/AudioLoader",
  617. "BufferGeometryLoader": "api/zh/loaders/BufferGeometryLoader",
  618. "Cache": "api/zh/loaders/Cache",
  619. "CompressedTextureLoader": "api/zh/loaders/CompressedTextureLoader",
  620. "CubeTextureLoader": "api/zh/loaders/CubeTextureLoader",
  621. "DataTextureLoader": "api/zh/loaders/DataTextureLoader",
  622. "FileLoader": "api/zh/loaders/FileLoader",
  623. "ImageBitmapLoader": "api/zh/loaders/ImageBitmapLoader",
  624. "ImageLoader": "api/zh/loaders/ImageLoader",
  625. "Loader": "api/zh/loaders/Loader",
  626. "LoaderUtils": "api/zh/loaders/LoaderUtils",
  627. "MaterialLoader": "api/zh/loaders/MaterialLoader",
  628. "ObjectLoader": "api/zh/loaders/ObjectLoader",
  629. "TextureLoader": "api/zh/loaders/TextureLoader"
  630. },
  631. "加载器 / 管理器": {
  632. "DefaultLoadingManager": "api/zh/loaders/managers/DefaultLoadingManager",
  633. "LoadingManager": "api/zh/loaders/managers/LoadingManager"
  634. },
  635. "材质": {
  636. "LineBasicMaterial": "api/zh/materials/LineBasicMaterial",
  637. "LineDashedMaterial": "api/zh/materials/LineDashedMaterial",
  638. "Material": "api/zh/materials/Material",
  639. "MeshBasicMaterial": "api/zh/materials/MeshBasicMaterial",
  640. "MeshDepthMaterial": "api/zh/materials/MeshDepthMaterial",
  641. "MeshDistanceMaterial": "api/zh/materials/MeshDistanceMaterial",
  642. "MeshLambertMaterial": "api/zh/materials/MeshLambertMaterial",
  643. "MeshMatcapMaterial": "api/zh/materials/MeshMatcapMaterial",
  644. "MeshNormalMaterial": "api/zh/materials/MeshNormalMaterial",
  645. "MeshPhongMaterial": "api/zh/materials/MeshPhongMaterial",
  646. "MeshPhysicalMaterial": "api/zh/materials/MeshPhysicalMaterial",
  647. "MeshStandardMaterial": "api/zh/materials/MeshStandardMaterial",
  648. "MeshToonMaterial": "api/zh/materials/MeshToonMaterial",
  649. "PointsMaterial": "api/zh/materials/PointsMaterial",
  650. "RawShaderMaterial": "api/zh/materials/RawShaderMaterial",
  651. "ShaderMaterial": "api/zh/materials/ShaderMaterial",
  652. "ShadowMaterial": "api/zh/materials/ShadowMaterial",
  653. "SpriteMaterial": "api/zh/materials/SpriteMaterial"
  654. },
  655. "数学库": {
  656. "Box2": "api/zh/math/Box2",
  657. "Box3": "api/zh/math/Box3",
  658. "Color": "api/zh/math/Color",
  659. "Cylindrical": "api/zh/math/Cylindrical",
  660. "Euler": "api/zh/math/Euler",
  661. "Frustum": "api/zh/math/Frustum",
  662. "Interpolant": "api/zh/math/Interpolant",
  663. "Line3": "api/zh/math/Line3",
  664. "MathUtils": "api/zh/math/MathUtils",
  665. "Matrix3": "api/zh/math/Matrix3",
  666. "Matrix4": "api/zh/math/Matrix4",
  667. "Plane": "api/zh/math/Plane",
  668. "Quaternion": "api/zh/math/Quaternion",
  669. "Ray": "api/zh/math/Ray",
  670. "Sphere": "api/zh/math/Sphere",
  671. "Spherical": "api/zh/math/Spherical",
  672. "SphericalHarmonics3": "api/zh/math/SphericalHarmonics3",
  673. "Triangle": "api/zh/math/Triangle",
  674. "Vector2": "api/zh/math/Vector2",
  675. "Vector3": "api/zh/math/Vector3",
  676. "Vector4": "api/zh/math/Vector4"
  677. },
  678. "数学库 / 插值": {
  679. "CubicInterpolant": "api/zh/math/interpolants/CubicInterpolant",
  680. "DiscreteInterpolant": "api/zh/math/interpolants/DiscreteInterpolant",
  681. "LinearInterpolant": "api/zh/math/interpolants/LinearInterpolant",
  682. "QuaternionLinearInterpolant": "api/zh/math/interpolants/QuaternionLinearInterpolant"
  683. },
  684. "物体": {
  685. "Bone": "api/zh/objects/Bone",
  686. "Group": "api/zh/objects/Group",
  687. "InstancedMesh": "api/zh/objects/InstancedMesh",
  688. "Line": "api/zh/objects/Line",
  689. "LineLoop": "api/zh/objects/LineLoop",
  690. "LineSegments": "api/zh/objects/LineSegments",
  691. "LOD": "api/zh/objects/LOD",
  692. "Mesh": "api/zh/objects/Mesh",
  693. "Points": "api/zh/objects/Points",
  694. "Skeleton": "api/zh/objects/Skeleton",
  695. "SkinnedMesh": "api/zh/objects/SkinnedMesh",
  696. "Sprite": "api/zh/objects/Sprite"
  697. },
  698. "渲染器": {
  699. "WebGLMultipleRenderTargets": "api/zh/renderers/WebGLMultipleRenderTargets",
  700. "WebGLRenderer": "api/zh/renderers/WebGLRenderer",
  701. "WebGL1Renderer": "api/zh/renderers/WebGL1Renderer",
  702. "WebGLRenderTarget": "api/zh/renderers/WebGLRenderTarget",
  703. "WebGLCubeRenderTarget": "api/zh/renderers/WebGLCubeRenderTarget"
  704. },
  705. "渲染器 / 着色器": {
  706. "ShaderChunk": "api/zh/renderers/shaders/ShaderChunk",
  707. "ShaderLib": "api/zh/renderers/shaders/ShaderLib",
  708. "UniformsLib": "api/zh/renderers/shaders/UniformsLib",
  709. "UniformsUtils": "api/zh/renderers/shaders/UniformsUtils"
  710. },
  711. "渲染器 / WebXR": {
  712. "WebXRManager": "api/zh/renderers/webxr/WebXRManager"
  713. },
  714. "场景": {
  715. "Fog": "api/zh/scenes/Fog",
  716. "FogExp2": "api/zh/scenes/FogExp2",
  717. "Scene": "api/zh/scenes/Scene"
  718. },
  719. "纹理贴图": {
  720. "CanvasTexture": "api/zh/textures/CanvasTexture",
  721. "CompressedTexture": "api/zh/textures/CompressedTexture",
  722. "CompressedArrayTexture": "api/zh/textures/CompressedArrayTexture",
  723. "CubeTexture": "api/zh/textures/CubeTexture",
  724. "DataArrayTexture": "api/zh/textures/DataArrayTexture",
  725. "Data3DTexture": "api/zh/textures/Data3DTexture",
  726. "DataTexture": "api/zh/textures/DataTexture",
  727. "DepthTexture": "api/zh/textures/DepthTexture",
  728. "FramebufferTexture": "api/zh/textures/FramebufferTexture",
  729. "Source": "api/zh/textures/Source",
  730. "Texture": "api/zh/textures/Texture",
  731. "VideoTexture": "api/zh/textures/VideoTexture"
  732. }
  733. },
  734. "Addons": {
  735. "动画": {
  736. "CCDIKSolver": "examples/zh/animations/CCDIKSolver",
  737. "MMDAnimationHelper": "examples/zh/animations/MMDAnimationHelper",
  738. "MMDPhysics": "examples/zh/animations/MMDPhysics"
  739. },
  740. "控制": {
  741. "DragControls": "examples/zh/controls/DragControls",
  742. "FirstPersonControls": "examples/zh/controls/FirstPersonControls",
  743. "FlyControls": "examples/zh/controls/FlyControls",
  744. "OrbitControls": "examples/zh/controls/OrbitControls",
  745. "PointerLockControls": "examples/zh/controls/PointerLockControls",
  746. "TrackballControls": "examples/zh/controls/TrackballControls",
  747. "TransformControls": "examples/zh/controls/TransformControls"
  748. },
  749. "几何体": {
  750. "ConvexGeometry": "examples/zh/geometries/ConvexGeometry",
  751. "DecalGeometry": "examples/zh/geometries/DecalGeometry",
  752. "ParametricGeometry": "examples/zh/geometries/ParametricGeometry",
  753. "TextGeometry": "examples/zh/geometries/TextGeometry"
  754. },
  755. "辅助对象": {
  756. "LightProbeHelper": "examples/zh/helpers/LightProbeHelper",
  757. "PositionalAudioHelper": "examples/zh/helpers/PositionalAudioHelper",
  758. "RectAreaLightHelper": "examples/zh/helpers/RectAreaLightHelper",
  759. "VertexNormalsHelper": "examples/zh/helpers/VertexNormalsHelper",
  760. "VertexTangentsHelper": "examples/zh/helpers/VertexTangentsHelper"
  761. },
  762. "灯光": {
  763. "LightProbeGenerator": "examples/zh/lights/LightProbeGenerator"
  764. },
  765. "加载器": {
  766. "DRACOLoader": "examples/zh/loaders/DRACOLoader",
  767. "FontLoader": "examples/zh/loaders/FontLoader",
  768. "GLTFLoader": "examples/zh/loaders/GLTFLoader",
  769. "MMDLoader": "examples/zh/loaders/MMDLoader",
  770. "MTLLoader": "examples/zh/loaders/MTLLoader",
  771. "OBJLoader": "examples/zh/loaders/OBJLoader",
  772. "PCDLoader": "examples/zh/loaders/PCDLoader",
  773. "PDBLoader": "examples/zh/loaders/PDBLoader",
  774. "PRWMLoader": "examples/zh/loaders/PRWMLoader",
  775. "SVGLoader": "examples/zh/loaders/SVGLoader",
  776. "TGALoader": "examples/zh/loaders/TGALoader"
  777. },
  778. "物体": {
  779. "Lensflare": "examples/zh/objects/Lensflare"
  780. },
  781. "后期处理": {
  782. "EffectComposer": "examples/zh/postprocessing/EffectComposer"
  783. },
  784. "导出器": {
  785. "ColladaExporter": "examples/zh/exporters/ColladaExporter",
  786. "GLTFExporter": "examples/zh/exporters/GLTFExporter",
  787. "PLYExporter": "examples/zh/exporters/PLYExporter"
  788. },
  789. "数学库": {
  790. "LookupTable": "examples/zh/math/Lut",
  791. "MeshSurfaceSampler": "examples/zh/math/MeshSurfaceSampler",
  792. "OBB": "examples/en/math/OBB"
  793. },
  794. "QuickHull": {
  795. "Face": "examples/zh/math/convexhull/Face",
  796. "HalfEdge": "examples/zh/math/convexhull/HalfEdge",
  797. "ConvexHull": "examples/zh/math/convexhull/ConvexHull",
  798. "VertexNode": "examples/zh/math/convexhull/VertexNode",
  799. "VertexList": "examples/zh/math/convexhull/VertexList"
  800. },
  801. "渲染器": {
  802. "CSS2DRenderer": "examples/zh/renderers/CSS2DRenderer",
  803. "CSS3DRenderer": "examples/zh/renderers/CSS3DRenderer",
  804. "SVGRenderer": "examples/zh/renderers/SVGRenderer"
  805. },
  806. "实用工具": {
  807. "BufferGeometryUtils": "examples/zh/utils/BufferGeometryUtils",
  808. "SceneUtils": "examples/zh/utils/SceneUtils",
  809. "SkeletonUtils": "examples/zh/utils/SkeletonUtils"
  810. }
  811. },
  812. "开发者参考": {
  813. "WebGL渲染器": {
  814. "WebGLProgram": "api/zh/renderers/webgl/WebGLProgram"
  815. }
  816. }
  817. },
  818. "ko": {
  819. "매뉴얼": {
  820. "시작하기": {
  821. "장면 만들기": "manual/ko/introduction/Creating-a-scene",
  822. "설치": "manual/ko/introduction/Installation",
  823. "WebGL 호환성 검사": "manual/ko/introduction/WebGL-compatibility-check",
  824. "로컬 환경에서 구동 방법": "manual/ko/introduction/How-to-run-things-locally",
  825. "선 그리기": "manual/ko/introduction/Drawing-lines",
  826. "텍스트 만들기": "manual/ko/introduction/Creating-text",
  827. "3D 모델 불러오기": "manual/ko/introduction/Loading-3D-models",
  828. "FAQ": "manual/ko/introduction/FAQ",
  829. "참고 링크": "manual/ko/introduction/Useful-links"
  830. },
  831. "심화 과정": {
  832. "오브젝트를 업데이트하는 방법": "manual/ko/introduction/How-to-update-things",
  833. "오브젝트를 폐기하는 방법": "manual/ko/introduction/How-to-dispose-of-objects",
  834. "VR 컨텐츠를 만드는 방법": "manual/ko/introduction/How-to-create-VR-content",
  835. "후처리 사용 방법": "manual/ko/introduction/How-to-use-post-processing",
  836. "행렬 변환": "manual/ko/introduction/Matrix-transformations",
  837. "애니메이션 시스템": "manual/ko/introduction/Animation-system"
  838. },
  839. "빌드 도구": {
  840. "NPM 테스트": "manual/ko/buildTools/Testing-with-NPM"
  841. }
  842. },
  843. "레퍼런스": {
  844. "애니메이션": {
  845. "AnimationAction": "api/ko/animation/AnimationAction",
  846. "AnimationClip": "api/ko/animation/AnimationClip",
  847. "AnimationMixer": "api/ko/animation/AnimationMixer",
  848. "AnimationObjectGroup": "api/ko/animation/AnimationObjectGroup",
  849. "AnimationUtils": "api/ko/animation/AnimationUtils",
  850. "KeyframeTrack": "api/ko/animation/KeyframeTrack",
  851. "PropertyBinding": "api/ko/animation/PropertyBinding",
  852. "PropertyMixer": "api/ko/animation/PropertyMixer"
  853. },
  854. "애니메이션 / 트랙": {
  855. "BooleanKeyframeTrack": "api/ko/animation/tracks/BooleanKeyframeTrack",
  856. "ColorKeyframeTrack": "api/ko/animation/tracks/ColorKeyframeTrack",
  857. "NumberKeyframeTrack": "api/ko/animation/tracks/NumberKeyframeTrack",
  858. "QuaternionKeyframeTrack": "api/ko/animation/tracks/QuaternionKeyframeTrack",
  859. "StringKeyframeTrack": "api/ko/animation/tracks/StringKeyframeTrack",
  860. "VectorKeyframeTrack": "api/ko/animation/tracks/VectorKeyframeTrack"
  861. },
  862. "오디오": {
  863. "Audio": "api/ko/audio/Audio",
  864. "AudioAnalyser": "api/ko/audio/AudioAnalyser",
  865. "AudioContext": "api/ko/audio/AudioContext",
  866. "AudioListener": "api/ko/audio/AudioListener",
  867. "PositionalAudio": "api/ko/audio/PositionalAudio"
  868. },
  869. "카메라": {
  870. "ArrayCamera": "api/ko/cameras/ArrayCamera",
  871. "Camera": "api/ko/cameras/Camera",
  872. "CubeCamera": "api/ko/cameras/CubeCamera",
  873. "OrthographicCamera": "api/ko/cameras/OrthographicCamera",
  874. "PerspectiveCamera": "api/ko/cameras/PerspectiveCamera",
  875. "StereoCamera": "api/ko/cameras/StereoCamera"
  876. },
  877. "상수": {
  878. "Animation": "api/ko/constants/Animation",
  879. "Core": "api/ko/constants/Core",
  880. "CustomBlendingEquation": "api/ko/constants/CustomBlendingEquations",
  881. "Materials": "api/ko/constants/Materials",
  882. "Renderer": "api/ko/constants/Renderer",
  883. "Textures": "api/ko/constants/Textures"
  884. },
  885. "Core": {
  886. "BufferAttribute": "api/ko/core/BufferAttribute",
  887. "BufferGeometry": "api/ko/core/BufferGeometry",
  888. "Clock": "api/ko/core/Clock",
  889. "EventDispatcher": "api/ko/core/EventDispatcher",
  890. "GLBufferAttribute": "api/ko/core/GLBufferAttribute",
  891. "InstancedBufferAttribute": "api/ko/core/InstancedBufferAttribute",
  892. "InstancedBufferGeometry": "api/ko/core/InstancedBufferGeometry",
  893. "InstancedInterleavedBuffer": "api/ko/core/InstancedInterleavedBuffer",
  894. "InterleavedBuffer": "api/ko/core/InterleavedBuffer",
  895. "InterleavedBufferAttribute": "api/ko/core/InterleavedBufferAttribute",
  896. "Layers": "api/ko/core/Layers",
  897. "Object3D": "api/ko/core/Object3D",
  898. "Raycaster": "api/ko/core/Raycaster",
  899. "Uniform": "api/ko/core/Uniform"
  900. },
  901. "Core / BufferAttributes": {
  902. "BufferAttribute Types": "api/ko/core/bufferAttributeTypes/BufferAttributeTypes"
  903. },
  904. "Extras": {
  905. "DataUtils": "api/ko/extras/DataUtils",
  906. "Earcut": "api/ko/extras/Earcut",
  907. "ImageUtils": "api/ko/extras/ImageUtils",
  908. "PMREMGenerator": "api/ko/extras/PMREMGenerator",
  909. "ShapeUtils": "api/ko/extras/ShapeUtils"
  910. },
  911. "Extras / Core": {
  912. "Curve": "api/ko/extras/core/Curve",
  913. "CurvePath": "api/ko/extras/core/CurvePath",
  914. "Interpolations": "api/ko/extras/core/Interpolations",
  915. "Path": "api/ko/extras/core/Path",
  916. "Shape": "api/ko/extras/core/Shape",
  917. "ShapePath": "api/ko/extras/core/ShapePath"
  918. },
  919. "Extras / Curves": {
  920. "ArcCurve": "api/ko/extras/curves/ArcCurve",
  921. "CatmullRomCurve3": "api/ko/extras/curves/CatmullRomCurve3",
  922. "CubicBezierCurve": "api/ko/extras/curves/CubicBezierCurve",
  923. "CubicBezierCurve3": "api/ko/extras/curves/CubicBezierCurve3",
  924. "EllipseCurve": "api/ko/extras/curves/EllipseCurve",
  925. "LineCurve": "api/ko/extras/curves/LineCurve",
  926. "LineCurve3": "api/ko/extras/curves/LineCurve3",
  927. "QuadraticBezierCurve": "api/ko/extras/curves/QuadraticBezierCurve",
  928. "QuadraticBezierCurve3": "api/ko/extras/curves/QuadraticBezierCurve3",
  929. "SplineCurve": "api/ko/extras/curves/SplineCurve"
  930. }
  931. },
  932. "Addons": {
  933. "컨트롤": {
  934. "DragControls": "examples/ko/controls/DragControls",
  935. "FirstPersonControls": "examples/ko/controls/FirstPersonControls",
  936. "FlyControls": "examples/ko/controls/FlyControls",
  937. "OrbitControls": "examples/ko/controls/OrbitControls",
  938. "PointerLockControls": "examples/ko/controls/PointerLockControls",
  939. "TrackballControls": "examples/ko/controls/TrackballControls",
  940. "TransformControls": "examples/ko/controls/TransformControls"
  941. }
  942. }
  943. },
  944. "ja": {
  945. "マニュアル": {
  946. "はじめてみましょう": {
  947. "シーンの作成": "manual/ja/introduction/Creating-a-scene",
  948. "インストールの方法": "manual/ja/introduction/Installation",
  949. "WebGLの互換性の確認": "manual/ja/introduction/WebGL-compatibility-check",
  950. "localで実行する方法": "manual/ja/introduction/How-to-run-things-locally",
  951. "線を引く": "manual/ja/introduction/Drawing-lines",
  952. "テキストを作成する": "manual/ja/introduction/Creating-text",
  953. "3Dモデルをロードする": "manual/ja/introduction/Loading-3D-models",
  954. "ライブラリとプラグイン": "manual/ja/introduction/Libraries-and-Plugins",
  955. "FAQ": "manual/ja/introduction/FAQ",
  956. "役にたつリンク集": "manual/ja/introduction/Useful-links"
  957. },
  958. "次の段階": {
  959. "更新の仕方": "manual/ja/introduction/How-to-update-things",
  960. "オブジェクトを廃棄する方法": "manual/ja/introduction/How-to-dispose-of-objects",
  961. "VRコンテンツの作り方": "manual/ja/introduction/How-to-create-VR-content",
  962. "post-processingの使い方": "manual/ja/introduction/How-to-use-post-processing",
  963. "行列の変換": "manual/ja/introduction/Matrix-transformations",
  964. "アニメーションシステム": "manual/ja/introduction/Animation-system"
  965. },
  966. "ビルドツール": {
  967. "NPMでテストを実行する": "manual/ja/buildTools/Testing-with-NPM"
  968. }
  969. }
  970. },
  971. "it": {
  972. "Manuale": {
  973. "Per iniziare": {
  974. "Creare una scena": "manual/it/introduction/Creating-a-scene",
  975. "Installazione": "manual/it/introduction/Installation",
  976. "Controllo compatibilità WebGL": "manual/it/introduction/WebGL-compatibility-check",
  977. "Esecuzione in locale": "manual/it/introduction/How-to-run-things-locally",
  978. "Disegnare linee": "manual/it/introduction/Drawing-lines",
  979. "Creare testo": "manual/it/introduction/Creating-text",
  980. "Caricare modelli 3D": "manual/it/introduction/Loading-3D-models",
  981. "Librerie e Plugins": "manual/it/introduction/Libraries-and-Plugins",
  982. "FAQ": "manual/it/introduction/FAQ",
  983. "Link utili": "manual/it/introduction/Useful-links"
  984. },
  985. "Prossimi passi": {
  986. "Come aggiornare le cose": "manual/it/introduction/How-to-update-things",
  987. "Come liberare le risorse": "manual/it/introduction/How-to-dispose-of-objects",
  988. "Come creare contenuti VR": "manual/it/introduction/How-to-create-VR-content",
  989. "Come utilizzare il post-processing": "manual/it/introduction/How-to-use-post-processing",
  990. "Trasformazioni di matrici": "manual/it/introduction/Matrix-transformations",
  991. "Sistema di animazione": "manual/it/introduction/Animation-system",
  992. "Gestione del colore": "manual/it/introduction/Color-management"
  993. },
  994. "Strumenti di build": {
  995. "Testare con NPM": "manual/it/buildTools/Testing-with-NPM"
  996. }
  997. },
  998. "Riferimenti": {
  999. "Animazione": {
  1000. "AnimationAction": "api/it/animation/AnimationAction",
  1001. "AnimationClip": "api/it/animation/AnimationClip",
  1002. "AnimationMixer": "api/it/animation/AnimationMixer",
  1003. "AnimationObjectGroup": "api/it/animation/AnimationObjectGroup",
  1004. "AnimationUtils": "api/it/animation/AnimationUtils",
  1005. "KeyframeTrack": "api/it/animation/KeyframeTrack",
  1006. "PropertyBinding": "api/it/animation/PropertyBinding",
  1007. "PropertyMixer": "api/it/animation/PropertyMixer"
  1008. },
  1009. "Animazione / Tracks": {
  1010. "BooleanKeyframeTrack": "api/it/animation/tracks/BooleanKeyframeTrack",
  1011. "ColorKeyframeTrack": "api/it/animation/tracks/ColorKeyframeTrack",
  1012. "NumberKeyframeTrack": "api/it/animation/tracks/NumberKeyframeTrack",
  1013. "QuaternionKeyframeTrack": "api/it/animation/tracks/QuaternionKeyframeTrack",
  1014. "StringKeyframeTrack": "api/it/animation/tracks/StringKeyframeTrack",
  1015. "VectorKeyframeTrack": "api/it/animation/tracks/VectorKeyframeTrack"
  1016. },
  1017. "Audio": {
  1018. "Audio": "api/it/audio/Audio",
  1019. "AudioAnalyser": "api/it/audio/AudioAnalyser",
  1020. "AudioContext": "api/it/audio/AudioContext",
  1021. "AudioListener": "api/it/audio/AudioListener",
  1022. "PositionalAudio": "api/it/audio/PositionalAudio"
  1023. },
  1024. "Telecamere": {
  1025. "ArrayCamera": "api/it/cameras/ArrayCamera",
  1026. "Camera": "api/it/cameras/Camera",
  1027. "CubeCamera": "api/it/cameras/CubeCamera",
  1028. "OrthographicCamera": "api/it/cameras/OrthographicCamera",
  1029. "PerspectiveCamera": "api/it/cameras/PerspectiveCamera",
  1030. "StereoCamera": "api/it/cameras/StereoCamera"
  1031. },
  1032. "Costanti": {
  1033. "Animazione": "api/it/constants/Animation",
  1034. "Core": "api/it/constants/Core",
  1035. "CustomBlendingEquation": "api/it/constants/CustomBlendingEquations",
  1036. "BufferAttributeUsage": "api/it/constants/BufferAttributeUsage",
  1037. "Materiali": "api/it/constants/Materials",
  1038. "Renderer": "api/it/constants/Renderer",
  1039. "Texture": "api/it/constants/Textures"
  1040. },
  1041. "Core": {
  1042. "BufferAttribute": "api/it/core/BufferAttribute",
  1043. "BufferGeometry": "api/it/core/BufferGeometry",
  1044. "Clock": "api/it/core/Clock",
  1045. "EventDispatcher": "api/it/core/EventDispatcher",
  1046. "GLBufferAttribute": "api/it/core/GLBufferAttribute",
  1047. "InstancedBufferAttribute": "api/it/core/InstancedBufferAttribute",
  1048. "InstancedBufferGeometry": "api/it/core/InstancedBufferGeometry",
  1049. "InstancedInterleavedBuffer": "api/it/core/InstancedInterleavedBuffer",
  1050. "InterleavedBuffer": "api/it/core/InterleavedBuffer",
  1051. "InterleavedBufferAttribute": "api/it/core/InterleavedBufferAttribute",
  1052. "Layers": "api/it/core/Layers",
  1053. "Object3D": "api/it/core/Object3D",
  1054. "Raycaster": "api/it/core/Raycaster",
  1055. "Uniform": "api/it/core/Uniform"
  1056. },
  1057. "Core / BufferAttributes": {
  1058. "BufferAttribute Types": "api/it/core/bufferAttributeTypes/BufferAttributeTypes"
  1059. },
  1060. "Extras": {
  1061. "DataUtils": "api/it/extras/DataUtils",
  1062. "Earcut": "api/it/extras/Earcut",
  1063. "ImageUtils": "api/it/extras/ImageUtils",
  1064. "PMREMGenerator": "api/it/extras/PMREMGenerator",
  1065. "ShapeUtils": "api/it/extras/ShapeUtils"
  1066. },
  1067. "Extras / Core": {
  1068. "Curve": "api/it/extras/core/Curve",
  1069. "CurvePath": "api/it/extras/core/CurvePath",
  1070. "Interpolations": "api/it/extras/core/Interpolations",
  1071. "Path": "api/it/extras/core/Path",
  1072. "Shape": "api/it/extras/core/Shape",
  1073. "ShapePath": "api/it/extras/core/ShapePath"
  1074. },
  1075. "Extras / Curves": {
  1076. "ArcCurve": "api/it/extras/curves/ArcCurve",
  1077. "CatmullRomCurve3": "api/it/extras/curves/CatmullRomCurve3",
  1078. "CubicBezierCurve": "api/it/extras/curves/CubicBezierCurve",
  1079. "CubicBezierCurve3": "api/it/extras/curves/CubicBezierCurve3",
  1080. "EllipseCurve": "api/it/extras/curves/EllipseCurve",
  1081. "LineCurve": "api/it/extras/curves/LineCurve",
  1082. "LineCurve3": "api/it/extras/curves/LineCurve3",
  1083. "QuadraticBezierCurve": "api/it/extras/curves/QuadraticBezierCurve",
  1084. "QuadraticBezierCurve3": "api/it/extras/curves/QuadraticBezierCurve3",
  1085. "SplineCurve": "api/it/extras/curves/SplineCurve"
  1086. },
  1087. "Geometrie": {
  1088. "BoxGeometry": "api/it/geometries/BoxGeometry",
  1089. "CapsuleGeometry": "api/it/geometries/CapsuleGeometry",
  1090. "CircleGeometry": "api/it/geometries/CircleGeometry",
  1091. "ConeGeometry": "api/it/geometries/ConeGeometry",
  1092. "CylinderGeometry": "api/it/geometries/CylinderGeometry",
  1093. "DodecahedronGeometry": "api/it/geometries/DodecahedronGeometry",
  1094. "EdgesGeometry": "api/it/geometries/EdgesGeometry",
  1095. "ExtrudeGeometry": "api/it/geometries/ExtrudeGeometry",
  1096. "IcosahedronGeometry": "api/it/geometries/IcosahedronGeometry",
  1097. "LatheGeometry": "api/it/geometries/LatheGeometry",
  1098. "OctahedronGeometry": "api/it/geometries/OctahedronGeometry",
  1099. "PlaneGeometry": "api/it/geometries/PlaneGeometry",
  1100. "PolyhedronGeometry": "api/it/geometries/PolyhedronGeometry",
  1101. "RingGeometry": "api/it/geometries/RingGeometry",
  1102. "ShapeGeometry": "api/it/geometries/ShapeGeometry",
  1103. "SphereGeometry": "api/it/geometries/SphereGeometry",
  1104. "TetrahedronGeometry": "api/it/geometries/TetrahedronGeometry",
  1105. "TorusGeometry": "api/it/geometries/TorusGeometry",
  1106. "TorusKnotGeometry": "api/it/geometries/TorusKnotGeometry",
  1107. "TubeGeometry": "api/it/geometries/TubeGeometry",
  1108. "WireframeGeometry": "api/it/geometries/WireframeGeometry"
  1109. },
  1110. "Helpers": {
  1111. "ArrowHelper": "api/it/helpers/ArrowHelper",
  1112. "AxesHelper": "api/it/helpers/AxesHelper",
  1113. "BoxHelper": "api/it/helpers/BoxHelper",
  1114. "Box3Helper": "api/it/helpers/Box3Helper",
  1115. "CameraHelper": "api/it/helpers/CameraHelper",
  1116. "DirectionalLightHelper": "api/it/helpers/DirectionalLightHelper",
  1117. "GridHelper": "api/it/helpers/GridHelper",
  1118. "PolarGridHelper": "api/it/helpers/PolarGridHelper",
  1119. "HemisphereLightHelper": "api/it/helpers/HemisphereLightHelper",
  1120. "PlaneHelper": "api/it/helpers/PlaneHelper",
  1121. "PointLightHelper": "api/it/helpers/PointLightHelper",
  1122. "SkeletonHelper": "api/it/helpers/SkeletonHelper",
  1123. "SpotLightHelper": "api/it/helpers/SpotLightHelper"
  1124. },
  1125. "Luci": {
  1126. "AmbientLight": "api/it/lights/AmbientLight",
  1127. "AmbientLightProbe": "api/it/lights/AmbientLightProbe",
  1128. "DirectionalLight": "api/it/lights/DirectionalLight",
  1129. "HemisphereLight": "api/it/lights/HemisphereLight",
  1130. "HemisphereLightProbe": "api/it/lights/HemisphereLightProbe",
  1131. "Light": "api/it/lights/Light",
  1132. "LightProbe": "api/it/lights/LightProbe",
  1133. "PointLight": "api/it/lights/PointLight",
  1134. "RectAreaLight": "api/it/lights/RectAreaLight",
  1135. "SpotLight": "api/it/lights/SpotLight"
  1136. },
  1137. "Luci / Ombre": {
  1138. "LightShadow": "api/it/lights/shadows/LightShadow",
  1139. "PointLightShadow": "api/it/lights/shadows/PointLightShadow",
  1140. "DirectionalLightShadow": "api/it/lights/shadows/DirectionalLightShadow",
  1141. "SpotLightShadow": "api/it/lights/shadows/SpotLightShadow"
  1142. },
  1143. "Loaders": {
  1144. "AnimationLoader": "api/it/loaders/AnimationLoader",
  1145. "AudioLoader": "api/it/loaders/AudioLoader",
  1146. "BufferGeometryLoader": "api/it/loaders/BufferGeometryLoader",
  1147. "Cache": "api/it/loaders/Cache",
  1148. "CompressedTextureLoader": "api/it/loaders/CompressedTextureLoader",
  1149. "CubeTextureLoader": "api/it/loaders/CubeTextureLoader",
  1150. "DataTextureLoader": "api/it/loaders/DataTextureLoader",
  1151. "FileLoader": "api/it/loaders/FileLoader",
  1152. "ImageBitmapLoader": "api/it/loaders/ImageBitmapLoader",
  1153. "ImageLoader": "api/it/loaders/ImageLoader",
  1154. "Loader": "api/it/loaders/Loader",
  1155. "LoaderUtils": "api/it/loaders/LoaderUtils",
  1156. "MaterialLoader": "api/it/loaders/MaterialLoader",
  1157. "ObjectLoader": "api/it/loaders/ObjectLoader",
  1158. "TextureLoader": "api/it/loaders/TextureLoader"
  1159. },
  1160. "Loaders / Managers": {
  1161. "DefaultLoadingManager": "api/it/loaders/managers/DefaultLoadingManager",
  1162. "LoadingManager": "api/it/loaders/managers/LoadingManager"
  1163. },
  1164. "Materiali": {
  1165. "LineBasicMaterial": "api/it/materials/LineBasicMaterial",
  1166. "LineDashedMaterial": "api/it/materials/LineDashedMaterial",
  1167. "Material": "api/it/materials/Material",
  1168. "MeshBasicMaterial": "api/it/materials/MeshBasicMaterial",
  1169. "MeshDepthMaterial": "api/it/materials/MeshDepthMaterial",
  1170. "MeshDistanceMaterial": "api/it/materials/MeshDistanceMaterial",
  1171. "MeshLambertMaterial": "api/it/materials/MeshLambertMaterial",
  1172. "MeshMatcapMaterial": "api/it/materials/MeshMatcapMaterial",
  1173. "MeshNormalMaterial": "api/it/materials/MeshNormalMaterial",
  1174. "MeshPhongMaterial": "api/it/materials/MeshPhongMaterial",
  1175. "MeshPhysicalMaterial": "api/it/materials/MeshPhysicalMaterial",
  1176. "MeshStandardMaterial": "api/it/materials/MeshStandardMaterial",
  1177. "MeshToonMaterial": "api/it/materials/MeshToonMaterial",
  1178. "PointsMaterial": "api/it/materials/PointsMaterial",
  1179. "RawShaderMaterial": "api/it/materials/RawShaderMaterial",
  1180. "ShaderMaterial": "api/it/materials/ShaderMaterial",
  1181. "ShadowMaterial": "api/it/materials/ShadowMaterial",
  1182. "SpriteMaterial": "api/it/materials/SpriteMaterial"
  1183. },
  1184. "Math": {
  1185. "Box2": "api/it/math/Box2",
  1186. "Box3": "api/it/math/Box3",
  1187. "Color": "api/it/math/Color",
  1188. "Cylindrical": "api/it/math/Cylindrical",
  1189. "Euler": "api/it/math/Euler",
  1190. "Frustum": "api/it/math/Frustum",
  1191. "Interpolant": "api/it/math/Interpolant",
  1192. "Line3": "api/it/math/Line3",
  1193. "MathUtils": "api/it/math/MathUtils",
  1194. "Matrix3": "api/it/math/Matrix3",
  1195. "Matrix4": "api/it/math/Matrix4",
  1196. "Plane": "api/it/math/Plane",
  1197. "Quaternion": "api/it/math/Quaternion",
  1198. "Ray": "api/it/math/Ray",
  1199. "Sphere": "api/it/math/Sphere",
  1200. "Spherical": "api/it/math/Spherical",
  1201. "SphericalHarmonics3": "api/it/math/SphericalHarmonics3",
  1202. "Triangle": "api/it/math/Triangle",
  1203. "Vector2": "api/it/math/Vector2",
  1204. "Vector3": "api/it/math/Vector3",
  1205. "Vector4": "api/it/math/Vector4"
  1206. },
  1207. "Math / Interpolants": {
  1208. "CubicInterpolant": "api/it/math/interpolants/CubicInterpolant",
  1209. "DiscreteInterpolant": "api/it/math/interpolants/DiscreteInterpolant",
  1210. "LinearInterpolant": "api/it/math/interpolants/LinearInterpolant",
  1211. "QuaternionLinearInterpolant": "api/it/math/interpolants/QuaternionLinearInterpolant"
  1212. },
  1213. "Oggetti": {
  1214. "Bone": "api/it/objects/Bone",
  1215. "Group": "api/it/objects/Group",
  1216. "InstancedMesh": "api/it/objects/InstancedMesh",
  1217. "Line": "api/it/objects/Line",
  1218. "LineLoop": "api/it/objects/LineLoop",
  1219. "LineSegments": "api/it/objects/LineSegments",
  1220. "LOD": "api/it/objects/LOD",
  1221. "Mesh": "api/it/objects/Mesh",
  1222. "Points": "api/it/objects/Points",
  1223. "Skeleton": "api/it/objects/Skeleton",
  1224. "SkinnedMesh": "api/it/objects/SkinnedMesh",
  1225. "Sprite": "api/it/objects/Sprite"
  1226. },
  1227. "Renderers": {
  1228. "WebGLMultipleRenderTargets": "api/it/renderers/WebGLMultipleRenderTargets",
  1229. "WebGLRenderer": "api/it/renderers/WebGLRenderer",
  1230. "WebGL1Renderer": "api/it/renderers/WebGL1Renderer",
  1231. "WebGLRenderTarget": "api/it/renderers/WebGLRenderTarget",
  1232. "WebGL3DRenderTarget": "api/it/renderers/WebGL3DRenderTarget",
  1233. "WebGLArrayRenderTarget": "api/it/renderers/WebGLArrayRenderTarget",
  1234. "WebGLCubeRenderTarget": "api/it/renderers/WebGLCubeRenderTarget"
  1235. },
  1236. "Renderers / Shaders": {
  1237. "ShaderChunk": "api/it/renderers/shaders/ShaderChunk",
  1238. "ShaderLib": "api/it/renderers/shaders/ShaderLib",
  1239. "UniformsLib": "api/it/renderers/shaders/UniformsLib",
  1240. "UniformsUtils": "api/it/renderers/shaders/UniformsUtils"
  1241. },
  1242. "Renderers / WebXR": {
  1243. "WebXRManager": "api/it/renderers/webxr/WebXRManager"
  1244. },
  1245. "Scene": {
  1246. "Fog": "api/it/scenes/Fog",
  1247. "FogExp2": "api/it/scenes/FogExp2",
  1248. "Scene": "api/it/scenes/Scene"
  1249. },
  1250. "Textures": {
  1251. "CanvasTexture": "api/it/textures/CanvasTexture",
  1252. "CompressedTexture": "api/it/textures/CompressedTexture",
  1253. "CompressedArrayTexture": "api/it/textures/CompressedArrayTexture",
  1254. "CubeTexture": "api/it/textures/CubeTexture",
  1255. "Data3DTexture": "api/it/textures/Data3DTexture",
  1256. "DataArrayTexture": "api/it/textures/DataArrayTexture",
  1257. "DataTexture": "api/it/textures/DataTexture",
  1258. "DepthTexture": "api/it/textures/DepthTexture",
  1259. "FramebufferTexture": "api/it/textures/FramebufferTexture",
  1260. "Source": "api/it/textures/Source",
  1261. "Texture": "api/it/textures/Texture",
  1262. "VideoTexture": "api/it/textures/VideoTexture"
  1263. }
  1264. }
  1265. },
  1266. "pt-br": {
  1267. "Manual": {
  1268. "Comece a usar": {
  1269. "Criando uma cena": "manual/pt-br/introduction/Creating-a-scene",
  1270. "Instalação": "manual/pt-br/introduction/Installation",
  1271. "Compatibilidade WebGL": "manual/pt-br/introduction/WebGL-compatibility-check",
  1272. "Como executar localmente": "manual/pt-br/introduction/How-to-run-things-locally",
  1273. "Desenhando linhas": "manual/pt-br/introduction/Drawing-lines",
  1274. "Criando texto": "manual/pt-br/introduction/Creating-text",
  1275. "Carregando modelos 3D": "manual/pt-br/introduction/Loading-3D-models",
  1276. "Bibliotecas e Plugins": "manual/pt-br/introduction/Libraries-and-Plugins",
  1277. "FAQ": "manual/pt-br/introduction/FAQ",
  1278. "Links úteis": "manual/pt-br/introduction/Useful-links"
  1279. },
  1280. "Próximos Passos": {
  1281. "Como atualizar as coisas": "manual/pt-br/introduction/How-to-update-things",
  1282. "Como descartar objetos": "manual/pt-br/introduction/How-to-dispose-of-objects",
  1283. "Como criar conteúdo de VR": "manual/pt-br/introduction/How-to-create-VR-content",
  1284. "Como usar o pós-processamento": "manual/pt-br/introduction/How-to-use-post-processing",
  1285. "Transformações de matriz": "manual/pt-br/introduction/Matrix-transformations",
  1286. "Sistema de animação": "manual/pt-br/introduction/Animation-system",
  1287. "Gerenciamento de cor": "manual/pt-br/introduction/Color-management"
  1288. },
  1289. "Ferramentas de Build": {
  1290. "Testando com NPM": "manual/pt-br/buildTools/Testing-with-NPM"
  1291. }
  1292. },
  1293. "Referência": {
  1294. "Animation": {
  1295. "AnimationAction": "api/pt-br/animation/AnimationAction",
  1296. "AnimationClip": "api/pt-br/animation/AnimationClip",
  1297. "AnimationMixer": "api/pt-br/animation/AnimationMixer",
  1298. "AnimationObjectGroup": "api/pt-br/animation/AnimationObjectGroup",
  1299. "AnimationUtils": "api/pt-br/animation/AnimationUtils",
  1300. "KeyframeTrack": "api/pt-br/animation/KeyframeTrack",
  1301. "PropertyBinding": "api/pt-br/animation/PropertyBinding",
  1302. "PropertyMixer": "api/pt-br/animation/PropertyMixer"
  1303. },
  1304. "Animation / Tracks": {
  1305. "BooleanKeyframeTrack": "api/pt-br/animation/tracks/BooleanKeyframeTrack",
  1306. "ColorKeyframeTrack": "api/pt-br/animation/tracks/ColorKeyframeTrack",
  1307. "NumberKeyframeTrack": "api/pt-br/animation/tracks/NumberKeyframeTrack",
  1308. "QuaternionKeyframeTrack": "api/pt-br/animation/tracks/QuaternionKeyframeTrack",
  1309. "StringKeyframeTrack": "api/pt-br/animation/tracks/StringKeyframeTrack",
  1310. "VectorKeyframeTrack": "api/pt-br/animation/tracks/VectorKeyframeTrack"
  1311. },
  1312. "Audio": {
  1313. "Audio": "api/pt-br/audio/Audio",
  1314. "AudioAnalyser": "api/pt-br/audio/AudioAnalyser",
  1315. "AudioContext": "api/pt-br/audio/AudioContext",
  1316. "AudioListener": "api/pt-br/audio/AudioListener",
  1317. "PositionalAudio": "api/pt-br/audio/PositionalAudio"
  1318. },
  1319. "Cameras": {
  1320. "ArrayCamera": "api/pt-br/cameras/ArrayCamera",
  1321. "Camera": "api/pt-br/cameras/Camera",
  1322. "CubeCamera": "api/pt-br/cameras/CubeCamera",
  1323. "OrthographicCamera": "api/pt-br/cameras/OrthographicCamera",
  1324. "PerspectiveCamera": "api/pt-br/cameras/PerspectiveCamera",
  1325. "StereoCamera": "api/pt-br/cameras/StereoCamera"
  1326. },
  1327. "Constantes": {
  1328. "Animation": "api/pt-br/constants/Animation",
  1329. "Core": "api/pt-br/constants/Core",
  1330. "CustomBlendingEquation": "api/pt-br/constants/CustomBlendingEquations",
  1331. "BufferAttributeUsage": "api/pt-br/constants/BufferAttributeUsage",
  1332. "Materials": "api/pt-br/constants/Materials",
  1333. "Renderer": "api/pt-br/constants/Renderer",
  1334. "Textures": "api/pt-br/constants/Textures"
  1335. }
  1336. }
  1337. },
  1338. "fr": {
  1339. "Manuel": {
  1340. "Débuter": {
  1341. "Créer une scène": "manual/fr/introduction/Creating-a-scene",
  1342. "Installation": "manual/fr/introduction/Installation",
  1343. "Compatibilité WebGL": "manual/fr/introduction/WebGL-compatibility-check",
  1344. "Exécuter localement": "manual/fr/introduction/How-to-run-things-locally",
  1345. "Dessiner des lignes": "manual/fr/introduction/Drawing-lines",
  1346. "Créer un texte": "manual/fr/introduction/Creating-text",
  1347. "Importer des modèles 3D": "manual/fr/introduction/Loading-3D-models",
  1348. "Librairies et Plugins": "manual/fr/introduction/Libraries-and-Plugins",
  1349. "FAQ": "manual/fr/introduction/FAQ",
  1350. "Liens Utiles": "manual/fr/introduction/Useful-links"
  1351. },
  1352. "Étapes Suivantes": {
  1353. "Mettre les éléments à jour": "manual/fr/introduction/How-to-update-things",
  1354. "Supprimer un objet": "manual/fr/introduction/How-to-dispose-of-objects",
  1355. "Créer du contenu VR": "manual/fr/introduction/How-to-create-VR-content",
  1356. "Utiliser le post-processing": "manual/fr/introduction/How-to-use-post-processing",
  1357. "Matrices de transformation": "manual/fr/introduction/Matrix-transformations",
  1358. "Système d'animation": "manual/fr/introduction/Animation-system",
  1359. "Gestion des couleurs": "manual/fr/introduction/Color-management"
  1360. },
  1361. "Outils de build": {
  1362. "Tests avec NPM": "manual/fr/buildTools/Testing-with-NPM"
  1363. },
  1364. "Noyau": {
  1365. "BufferAttribute": "api/fr/core/BufferAttribute",
  1366. "BufferGeometry": "api/fr/core/BufferGeometry"
  1367. }
  1368. },
  1369. "Référence": {
  1370. "Animation": {
  1371. "AnimationAction": "api/fr/animation/AnimationAction",
  1372. "AnimationClip": "api/fr/animation/AnimationClip",
  1373. "AnimationMixer": "api/fr/animation/AnimationMixer",
  1374. "AnimationObjectGroup": "api/fr/animation/AnimationObjectGroup",
  1375. "AnimationUtils": "api/fr/animation/AnimationUtils",
  1376. "KeyframeTrack": "api/fr/animation/KeyframeTrack",
  1377. "PropertyBinding": "api/fr/animation/PropertyBinding",
  1378. "PropertyMixer": "api/fr/animation/PropertyMixer"
  1379. },
  1380. "Animation / Tracks": {
  1381. "BooleanKeyframeTrack": "api/fr/animation/tracks/BooleanKeyframeTrack",
  1382. "ColorKeyframeTrack": "api/fr/animation/tracks/ColorKeyframeTrack",
  1383. "NumberKeyframeTrack": "api/fr/animation/tracks/NumberKeyframeTrack",
  1384. "QuaternionKeyframeTrack": "api/fr/animation/tracks/QuaternionKeyframeTrack",
  1385. "StringKeyframeTrack": "api/fr/animation/tracks/StringKeyframeTrack",
  1386. "VectorKeyframeTrack": "api/fr/animation/tracks/VectorKeyframeTrack"
  1387. },
  1388. "Audio": {
  1389. "Audio": "api/fr/audio/Audio",
  1390. "AudioAnalyser": "api/fr/audio/AudioAnalyser",
  1391. "AudioContext": "api/fr/audio/AudioContext",
  1392. "AudioListener": "api/fr/audio/AudioListener",
  1393. "PositionalAudio": "api/fr/audio/PositionalAudio"
  1394. },
  1395. "Caméras": {
  1396. "ArrayCamera": "api/fr/cameras/ArrayCamera",
  1397. "Camera": "api/fr/cameras/Camera",
  1398. "CubeCamera": "api/fr/cameras/CubeCamera",
  1399. "OrthographicCamera": "api/fr/cameras/OrthographicCamera",
  1400. "PerspectiveCamera": "api/fr/cameras/PerspectiveCamera",
  1401. "StereoCamera": "api/fr/cameras/StereoCamera"
  1402. },
  1403. "Constantes": {
  1404. "Animation": "api/fr/constants/Animation",
  1405. "Core": "api/fr/constants/Core",
  1406. "CustomBlendingEquation": "api/fr/constants/CustomBlendingEquations",
  1407. "BufferAttributeUsage": "api/fr/constants/BufferAttributeUsage",
  1408. "Materials": "api/fr/constants/Materials",
  1409. "Renderer": "api/fr/constants/Renderer",
  1410. "Textures": "api/fr/constants/Textures"
  1411. },
  1412. "Géométries": {
  1413. "BoxGeometry": "api/fr/geometries/BoxGeometry",
  1414. "CapsuleGeometry": "api/fr/geometries/CapsuleGeometry",
  1415. "CircleGeometry": "api/fr/geometries/CircleGeometry",
  1416. "ConeGeometry": "api/fr/geometries/ConeGeometry",
  1417. "CylinderGeometry": "api/fr/geometries/CylinderGeometry",
  1418. "DodecahedronGeometry": "api/fr/geometries/DodecahedronGeometry",
  1419. "EdgesGeometry": "api/fr/geometries/EdgesGeometry",
  1420. "ExtrudeGeometry": "api/fr/geometries/ExtrudeGeometry",
  1421. "IcosahedronGeometry": "api/fr/geometries/IcosahedronGeometry",
  1422. "LatheGeometry": "api/fr/geometries/LatheGeometry",
  1423. "OctahedronGeometry": "api/fr/geometries/OctahedronGeometry",
  1424. "PlaneGeometry": "api/fr/geometries/PlaneGeometry",
  1425. "PolyhedronGeometry": "api/fr/geometries/PolyhedronGeometry",
  1426. "RingGeometry": "api/fr/geometries/RingGeometry",
  1427. "ShapeGeometry": "api/fr/geometries/ShapeGeometry",
  1428. "SphereGeometry": "api/fr/geometries/SphereGeometry",
  1429. "TetrahedronGeometry": "api/fr/geometries/TetrahedronGeometry",
  1430. "TorusGeometry": "api/fr/geometries/TorusGeometry",
  1431. "TorusKnotGeometry": "api/fr/geometries/TorusKnotGeometry",
  1432. "TubeGeometry": "api/fr/geometries/TubeGeometry",
  1433. "WireframeGeometry": "api/fr/geometries/WireframeGeometry"
  1434. }
  1435. }
  1436. },
  1437. "ru": {
  1438. "Руководство": {
  1439. "Приступая к работе": {
  1440. "Создание сцены": "manual/ru/introduction/Creating-a-scene",
  1441. "Установка": "manual/ru/introduction/Installation",
  1442. "Проверка совместимости с WebGL": "manual/ru/introduction/WebGL-compatibility-check",
  1443. "Локальная разработка ": "manual/ru/introduction/How-to-run-things-locally",
  1444. "Рисование линий": "manual/ru/introduction/Drawing-lines",
  1445. "Создание текста": "manual/ru/introduction/Creating-text",
  1446. "Загрузка 3D-моделей": "manual/ru/introduction/Loading-3D-models",
  1447. "Библиотеки и плагины": "manual/ru/introduction/Libraries-and-Plugins",
  1448. "Часто задаваемые вопросы": "manual/ru/introduction/FAQ",
  1449. "Полезные ссылки": "manual/ru/introduction/Useful-links"
  1450. },
  1451. "Next Steps": {
  1452. "How to update things": "manual/en/introduction/How-to-update-things",
  1453. "How to dispose of objects": "manual/en/introduction/How-to-dispose-of-objects",
  1454. "How to create VR content": "manual/en/introduction/How-to-create-VR-content",
  1455. "How to use post-processing": "manual/en/introduction/How-to-use-post-processing",
  1456. "Matrix transformations": "manual/en/introduction/Matrix-transformations",
  1457. "Animation system": "manual/en/introduction/Animation-system",
  1458. "Color management": "manual/en/introduction/Color-management"
  1459. },
  1460. "Build Tools": {
  1461. "Testing with NPM": "manual/en/buildTools/Testing-with-NPM"
  1462. }
  1463. },
  1464. "Reference": {
  1465. "Animation": {
  1466. "AnimationAction": "api/en/animation/AnimationAction",
  1467. "AnimationClip": "api/en/animation/AnimationClip",
  1468. "AnimationMixer": "api/en/animation/AnimationMixer",
  1469. "AnimationObjectGroup": "api/en/animation/AnimationObjectGroup",
  1470. "AnimationUtils": "api/en/animation/AnimationUtils",
  1471. "KeyframeTrack": "api/en/animation/KeyframeTrack",
  1472. "PropertyBinding": "api/en/animation/PropertyBinding",
  1473. "PropertyMixer": "api/en/animation/PropertyMixer"
  1474. },
  1475. "Animation / Tracks": {
  1476. "BooleanKeyframeTrack": "api/en/animation/tracks/BooleanKeyframeTrack",
  1477. "ColorKeyframeTrack": "api/en/animation/tracks/ColorKeyframeTrack",
  1478. "NumberKeyframeTrack": "api/en/animation/tracks/NumberKeyframeTrack",
  1479. "QuaternionKeyframeTrack": "api/en/animation/tracks/QuaternionKeyframeTrack",
  1480. "StringKeyframeTrack": "api/en/animation/tracks/StringKeyframeTrack",
  1481. "VectorKeyframeTrack": "api/en/animation/tracks/VectorKeyframeTrack"
  1482. },
  1483. "Audio": {
  1484. "Audio": "api/en/audio/Audio",
  1485. "AudioAnalyser": "api/en/audio/AudioAnalyser",
  1486. "AudioContext": "api/en/audio/AudioContext",
  1487. "AudioListener": "api/en/audio/AudioListener",
  1488. "PositionalAudio": "api/en/audio/PositionalAudio"
  1489. },
  1490. "Cameras": {
  1491. "ArrayCamera": "api/en/cameras/ArrayCamera",
  1492. "Camera": "api/en/cameras/Camera",
  1493. "CubeCamera": "api/en/cameras/CubeCamera",
  1494. "OrthographicCamera": "api/en/cameras/OrthographicCamera",
  1495. "PerspectiveCamera": "api/en/cameras/PerspectiveCamera",
  1496. "StereoCamera": "api/en/cameras/StereoCamera"
  1497. },
  1498. "Constants": {
  1499. "Animation": "api/en/constants/Animation",
  1500. "Core": "api/en/constants/Core",
  1501. "CustomBlendingEquation": "api/en/constants/CustomBlendingEquations",
  1502. "BufferAttributeUsage": "api/en/constants/BufferAttributeUsage",
  1503. "Materials": "api/en/constants/Materials",
  1504. "Renderer": "api/en/constants/Renderer",
  1505. "Textures": "api/en/constants/Textures"
  1506. },
  1507. "Core": {
  1508. "BufferAttribute": "api/en/core/BufferAttribute",
  1509. "BufferGeometry": "api/en/core/BufferGeometry",
  1510. "Clock": "api/en/core/Clock",
  1511. "EventDispatcher": "api/en/core/EventDispatcher",
  1512. "GLBufferAttribute": "api/en/core/GLBufferAttribute",
  1513. "InstancedBufferAttribute": "api/en/core/InstancedBufferAttribute",
  1514. "InstancedBufferGeometry": "api/en/core/InstancedBufferGeometry",
  1515. "InstancedInterleavedBuffer": "api/en/core/InstancedInterleavedBuffer",
  1516. "InterleavedBuffer": "api/en/core/InterleavedBuffer",
  1517. "InterleavedBufferAttribute": "api/en/core/InterleavedBufferAttribute",
  1518. "Layers": "api/en/core/Layers",
  1519. "Object3D": "api/en/core/Object3D",
  1520. "Raycaster": "api/en/core/Raycaster",
  1521. "Uniform": "api/en/core/Uniform"
  1522. },
  1523. "Core / BufferAttributes": {
  1524. "BufferAttribute Types": "api/en/core/bufferAttributeTypes/BufferAttributeTypes"
  1525. },
  1526. "Extras": {
  1527. "DataUtils": "api/en/extras/DataUtils",
  1528. "Earcut": "api/en/extras/Earcut",
  1529. "ImageUtils": "api/en/extras/ImageUtils",
  1530. "PMREMGenerator": "api/en/extras/PMREMGenerator",
  1531. "ShapeUtils": "api/en/extras/ShapeUtils"
  1532. },
  1533. "Extras / Core": {
  1534. "Curve": "api/en/extras/core/Curve",
  1535. "CurvePath": "api/en/extras/core/CurvePath",
  1536. "Interpolations": "api/en/extras/core/Interpolations",
  1537. "Path": "api/en/extras/core/Path",
  1538. "Shape": "api/en/extras/core/Shape",
  1539. "ShapePath": "api/en/extras/core/ShapePath"
  1540. },
  1541. "Extras / Curves": {
  1542. "ArcCurve": "api/en/extras/curves/ArcCurve",
  1543. "CatmullRomCurve3": "api/en/extras/curves/CatmullRomCurve3",
  1544. "CubicBezierCurve": "api/en/extras/curves/CubicBezierCurve",
  1545. "CubicBezierCurve3": "api/en/extras/curves/CubicBezierCurve3",
  1546. "EllipseCurve": "api/en/extras/curves/EllipseCurve",
  1547. "LineCurve": "api/en/extras/curves/LineCurve",
  1548. "LineCurve3": "api/en/extras/curves/LineCurve3",
  1549. "QuadraticBezierCurve": "api/en/extras/curves/QuadraticBezierCurve",
  1550. "QuadraticBezierCurve3": "api/en/extras/curves/QuadraticBezierCurve3",
  1551. "SplineCurve": "api/en/extras/curves/SplineCurve"
  1552. },
  1553. "Geometries": {
  1554. "BoxGeometry": "api/en/geometries/BoxGeometry",
  1555. "CapsuleGeometry": "api/en/geometries/CapsuleGeometry",
  1556. "CircleGeometry": "api/en/geometries/CircleGeometry",
  1557. "ConeGeometry": "api/en/geometries/ConeGeometry",
  1558. "CylinderGeometry": "api/en/geometries/CylinderGeometry",
  1559. "DodecahedronGeometry": "api/en/geometries/DodecahedronGeometry",
  1560. "EdgesGeometry": "api/en/geometries/EdgesGeometry",
  1561. "ExtrudeGeometry": "api/en/geometries/ExtrudeGeometry",
  1562. "IcosahedronGeometry": "api/en/geometries/IcosahedronGeometry",
  1563. "LatheGeometry": "api/en/geometries/LatheGeometry",
  1564. "OctahedronGeometry": "api/en/geometries/OctahedronGeometry",
  1565. "PlaneGeometry": "api/en/geometries/PlaneGeometry",
  1566. "PolyhedronGeometry": "api/en/geometries/PolyhedronGeometry",
  1567. "RingGeometry": "api/en/geometries/RingGeometry",
  1568. "ShapeGeometry": "api/en/geometries/ShapeGeometry",
  1569. "SphereGeometry": "api/en/geometries/SphereGeometry",
  1570. "TetrahedronGeometry": "api/en/geometries/TetrahedronGeometry",
  1571. "TorusGeometry": "api/en/geometries/TorusGeometry",
  1572. "TorusKnotGeometry": "api/en/geometries/TorusKnotGeometry",
  1573. "TubeGeometry": "api/en/geometries/TubeGeometry",
  1574. "WireframeGeometry": "api/en/geometries/WireframeGeometry"
  1575. },
  1576. "Helpers": {
  1577. "ArrowHelper": "api/en/helpers/ArrowHelper",
  1578. "AxesHelper": "api/en/helpers/AxesHelper",
  1579. "BoxHelper": "api/en/helpers/BoxHelper",
  1580. "Box3Helper": "api/en/helpers/Box3Helper",
  1581. "CameraHelper": "api/en/helpers/CameraHelper",
  1582. "DirectionalLightHelper": "api/en/helpers/DirectionalLightHelper",
  1583. "GridHelper": "api/en/helpers/GridHelper",
  1584. "PolarGridHelper": "api/en/helpers/PolarGridHelper",
  1585. "HemisphereLightHelper": "api/en/helpers/HemisphereLightHelper",
  1586. "PlaneHelper": "api/en/helpers/PlaneHelper",
  1587. "PointLightHelper": "api/en/helpers/PointLightHelper",
  1588. "SkeletonHelper": "api/en/helpers/SkeletonHelper",
  1589. "SpotLightHelper": "api/en/helpers/SpotLightHelper"
  1590. },
  1591. "Lights": {
  1592. "AmbientLight": "api/en/lights/AmbientLight",
  1593. "AmbientLightProbe": "api/en/lights/AmbientLightProbe",
  1594. "DirectionalLight": "api/en/lights/DirectionalLight",
  1595. "HemisphereLight": "api/en/lights/HemisphereLight",
  1596. "HemisphereLightProbe": "api/en/lights/HemisphereLightProbe",
  1597. "Light": "api/en/lights/Light",
  1598. "LightProbe": "api/en/lights/LightProbe",
  1599. "PointLight": "api/en/lights/PointLight",
  1600. "RectAreaLight": "api/en/lights/RectAreaLight",
  1601. "SpotLight": "api/en/lights/SpotLight"
  1602. },
  1603. "Lights / Shadows": {
  1604. "LightShadow": "api/en/lights/shadows/LightShadow",
  1605. "PointLightShadow": "api/en/lights/shadows/PointLightShadow",
  1606. "DirectionalLightShadow": "api/en/lights/shadows/DirectionalLightShadow",
  1607. "SpotLightShadow": "api/en/lights/shadows/SpotLightShadow"
  1608. },
  1609. "Loaders": {
  1610. "AnimationLoader": "api/en/loaders/AnimationLoader",
  1611. "AudioLoader": "api/en/loaders/AudioLoader",
  1612. "BufferGeometryLoader": "api/en/loaders/BufferGeometryLoader",
  1613. "Cache": "api/en/loaders/Cache",
  1614. "CompressedTextureLoader": "api/en/loaders/CompressedTextureLoader",
  1615. "CubeTextureLoader": "api/en/loaders/CubeTextureLoader",
  1616. "DataTextureLoader": "api/en/loaders/DataTextureLoader",
  1617. "FileLoader": "api/en/loaders/FileLoader",
  1618. "ImageBitmapLoader": "api/en/loaders/ImageBitmapLoader",
  1619. "ImageLoader": "api/en/loaders/ImageLoader",
  1620. "Loader": "api/en/loaders/Loader",
  1621. "LoaderUtils": "api/en/loaders/LoaderUtils",
  1622. "MaterialLoader": "api/en/loaders/MaterialLoader",
  1623. "ObjectLoader": "api/en/loaders/ObjectLoader",
  1624. "TextureLoader": "api/en/loaders/TextureLoader"
  1625. },
  1626. "Loaders / Managers": {
  1627. "DefaultLoadingManager": "api/en/loaders/managers/DefaultLoadingManager",
  1628. "LoadingManager": "api/en/loaders/managers/LoadingManager"
  1629. },
  1630. "Materials": {
  1631. "LineBasicMaterial": "api/en/materials/LineBasicMaterial",
  1632. "LineDashedMaterial": "api/en/materials/LineDashedMaterial",
  1633. "Material": "api/en/materials/Material",
  1634. "MeshBasicMaterial": "api/en/materials/MeshBasicMaterial",
  1635. "MeshDepthMaterial": "api/en/materials/MeshDepthMaterial",
  1636. "MeshDistanceMaterial": "api/en/materials/MeshDistanceMaterial",
  1637. "MeshLambertMaterial": "api/en/materials/MeshLambertMaterial",
  1638. "MeshMatcapMaterial": "api/en/materials/MeshMatcapMaterial",
  1639. "MeshNormalMaterial": "api/en/materials/MeshNormalMaterial",
  1640. "MeshPhongMaterial": "api/en/materials/MeshPhongMaterial",
  1641. "MeshPhysicalMaterial": "api/en/materials/MeshPhysicalMaterial",
  1642. "MeshStandardMaterial": "api/en/materials/MeshStandardMaterial",
  1643. "MeshToonMaterial": "api/en/materials/MeshToonMaterial",
  1644. "PointsMaterial": "api/en/materials/PointsMaterial",
  1645. "RawShaderMaterial": "api/en/materials/RawShaderMaterial",
  1646. "ShaderMaterial": "api/en/materials/ShaderMaterial",
  1647. "ShadowMaterial": "api/en/materials/ShadowMaterial",
  1648. "SpriteMaterial": "api/en/materials/SpriteMaterial"
  1649. },
  1650. "Math": {
  1651. "Box2": "api/en/math/Box2",
  1652. "Box3": "api/en/math/Box3",
  1653. "Color": "api/en/math/Color",
  1654. "Cylindrical": "api/en/math/Cylindrical",
  1655. "Euler": "api/en/math/Euler",
  1656. "Frustum": "api/en/math/Frustum",
  1657. "Interpolant": "api/en/math/Interpolant",
  1658. "Line3": "api/en/math/Line3",
  1659. "MathUtils": "api/en/math/MathUtils",
  1660. "Matrix3": "api/en/math/Matrix3",
  1661. "Matrix4": "api/en/math/Matrix4",
  1662. "Plane": "api/en/math/Plane",
  1663. "Quaternion": "api/en/math/Quaternion",
  1664. "Ray": "api/en/math/Ray",
  1665. "Sphere": "api/en/math/Sphere",
  1666. "Spherical": "api/en/math/Spherical",
  1667. "SphericalHarmonics3": "api/en/math/SphericalHarmonics3",
  1668. "Triangle": "api/en/math/Triangle",
  1669. "Vector2": "api/en/math/Vector2",
  1670. "Vector3": "api/en/math/Vector3",
  1671. "Vector4": "api/en/math/Vector4"
  1672. },
  1673. "Math / Interpolants": {
  1674. "CubicInterpolant": "api/en/math/interpolants/CubicInterpolant",
  1675. "DiscreteInterpolant": "api/en/math/interpolants/DiscreteInterpolant",
  1676. "LinearInterpolant": "api/en/math/interpolants/LinearInterpolant",
  1677. "QuaternionLinearInterpolant": "api/en/math/interpolants/QuaternionLinearInterpolant"
  1678. },
  1679. "Objects": {
  1680. "Bone": "api/en/objects/Bone",
  1681. "Group": "api/en/objects/Group",
  1682. "InstancedMesh": "api/en/objects/InstancedMesh",
  1683. "Line": "api/en/objects/Line",
  1684. "LineLoop": "api/en/objects/LineLoop",
  1685. "LineSegments": "api/en/objects/LineSegments",
  1686. "LOD": "api/en/objects/LOD",
  1687. "Mesh": "api/en/objects/Mesh",
  1688. "Points": "api/en/objects/Points",
  1689. "Skeleton": "api/en/objects/Skeleton",
  1690. "SkinnedMesh": "api/en/objects/SkinnedMesh",
  1691. "Sprite": "api/en/objects/Sprite"
  1692. },
  1693. "Renderers": {
  1694. "WebGLMultipleRenderTargets": "api/en/renderers/WebGLMultipleRenderTargets",
  1695. "WebGLRenderer": "api/en/renderers/WebGLRenderer",
  1696. "WebGL1Renderer": "api/en/renderers/WebGL1Renderer",
  1697. "WebGLRenderTarget": "api/en/renderers/WebGLRenderTarget",
  1698. "WebGL3DRenderTarget": "api/en/renderers/WebGL3DRenderTarget",
  1699. "WebGLArrayRenderTarget": "api/en/renderers/WebGLArrayRenderTarget",
  1700. "WebGLCubeRenderTarget": "api/en/renderers/WebGLCubeRenderTarget"
  1701. },
  1702. "Renderers / Shaders": {
  1703. "ShaderChunk": "api/en/renderers/shaders/ShaderChunk",
  1704. "ShaderLib": "api/en/renderers/shaders/ShaderLib",
  1705. "UniformsLib": "api/en/renderers/shaders/UniformsLib",
  1706. "UniformsUtils": "api/en/renderers/shaders/UniformsUtils"
  1707. },
  1708. "Renderers / WebXR": {
  1709. "WebXRManager": "api/en/renderers/webxr/WebXRManager"
  1710. },
  1711. "Scenes": {
  1712. "Fog": "api/en/scenes/Fog",
  1713. "FogExp2": "api/en/scenes/FogExp2",
  1714. "Scene": "api/en/scenes/Scene"
  1715. },
  1716. "Textures": {
  1717. "CanvasTexture": "api/en/textures/CanvasTexture",
  1718. "CompressedTexture": "api/en/textures/CompressedTexture",
  1719. "CompressedArrayTexture": "api/en/textures/CompressedArrayTexture",
  1720. "CubeTexture": "api/en/textures/CubeTexture",
  1721. "Data3DTexture": "api/en/textures/Data3DTexture",
  1722. "DataArrayTexture": "api/en/textures/DataArrayTexture",
  1723. "DataTexture": "api/en/textures/DataTexture",
  1724. "DepthTexture": "api/en/textures/DepthTexture",
  1725. "FramebufferTexture": "api/en/textures/FramebufferTexture",
  1726. "Source": "api/en/textures/Source",
  1727. "Texture": "api/en/textures/Texture",
  1728. "VideoTexture": "api/en/textures/VideoTexture"
  1729. }
  1730. },
  1731. "Examples": {
  1732. "Animations": {
  1733. "CCDIKSolver": "examples/en/animations/CCDIKSolver",
  1734. "MMDAnimationHelper": "examples/en/animations/MMDAnimationHelper",
  1735. "MMDPhysics": "examples/en/animations/MMDPhysics"
  1736. },
  1737. "Controls": {
  1738. "ArcballControls": "examples/en/controls/ArcballControls",
  1739. "DragControls": "examples/en/controls/DragControls",
  1740. "FirstPersonControls": "examples/en/controls/FirstPersonControls",
  1741. "FlyControls": "examples/en/controls/FlyControls",
  1742. "OrbitControls": "examples/en/controls/OrbitControls",
  1743. "PointerLockControls": "examples/en/controls/PointerLockControls",
  1744. "TrackballControls": "examples/en/controls/TrackballControls",
  1745. "TransformControls": "examples/en/controls/TransformControls"
  1746. },
  1747. "Geometries": {
  1748. "ConvexGeometry": "examples/en/geometries/ConvexGeometry",
  1749. "DecalGeometry": "examples/en/geometries/DecalGeometry",
  1750. "ParametricGeometry": "examples/en/geometries/ParametricGeometry",
  1751. "TextGeometry": "examples/en/geometries/TextGeometry"
  1752. },
  1753. "Helpers": {
  1754. "LightProbeHelper": "examples/en/helpers/LightProbeHelper",
  1755. "PositionalAudioHelper": "examples/en/helpers/PositionalAudioHelper",
  1756. "RectAreaLightHelper": "examples/en/helpers/RectAreaLightHelper",
  1757. "VertexNormalsHelper": "examples/en/helpers/VertexNormalsHelper",
  1758. "VertexTangentsHelper": "examples/en/helpers/VertexTangentsHelper"
  1759. },
  1760. "Lights": {
  1761. "LightProbeGenerator": "examples/en/lights/LightProbeGenerator"
  1762. },
  1763. "Loaders": {
  1764. "3DMLoader": "examples/en/loaders/3DMLoader",
  1765. "DRACOLoader": "examples/en/loaders/DRACOLoader",
  1766. "FontLoader": "examples/en/loaders/FontLoader",
  1767. "GLTFLoader": "examples/en/loaders/GLTFLoader",
  1768. "KTX2Loader": "examples/en/loaders/KTX2Loader",
  1769. "LDrawLoader": "examples/en/loaders/LDrawLoader",
  1770. "MMDLoader": "examples/en/loaders/MMDLoader",
  1771. "MTLLoader": "examples/en/loaders/MTLLoader",
  1772. "OBJLoader": "examples/en/loaders/OBJLoader",
  1773. "PCDLoader": "examples/en/loaders/PCDLoader",
  1774. "PDBLoader": "examples/en/loaders/PDBLoader",
  1775. "PRWMLoader": "examples/en/loaders/PRWMLoader",
  1776. "SVGLoader": "examples/en/loaders/SVGLoader",
  1777. "TGALoader": "examples/en/loaders/TGALoader"
  1778. },
  1779. "Objects": {
  1780. "Lensflare": "examples/en/objects/Lensflare"
  1781. },
  1782. "Post-Processing": {
  1783. "EffectComposer": "examples/en/postprocessing/EffectComposer"
  1784. },
  1785. "Exporters": {
  1786. "ColladaExporter": "examples/en/exporters/ColladaExporter",
  1787. "EXRExporter": "examples/en/exporters/EXRExporter",
  1788. "GLTFExporter": "examples/en/exporters/GLTFExporter",
  1789. "OBJExporter": "examples/en/exporters/OBJExporter",
  1790. "PLYExporter": "examples/en/exporters/PLYExporter"
  1791. },
  1792. "Math": {
  1793. "LookupTable": "examples/en/math/Lut",
  1794. "MeshSurfaceSampler": "examples/en/math/MeshSurfaceSampler",
  1795. "OBB": "examples/en/math/OBB"
  1796. },
  1797. "ConvexHull": {
  1798. "Face": "examples/en/math/convexhull/Face",
  1799. "HalfEdge": "examples/en/math/convexhull/HalfEdge",
  1800. "ConvexHull": "examples/en/math/convexhull/ConvexHull",
  1801. "VertexNode": "examples/en/math/convexhull/VertexNode",
  1802. "VertexList": "examples/en/math/convexhull/VertexList"
  1803. },
  1804. "Renderers": {
  1805. "CSS2DRenderer": "examples/en/renderers/CSS2DRenderer",
  1806. "CSS3DRenderer": "examples/en/renderers/CSS3DRenderer",
  1807. "SVGRenderer": "examples/en/renderers/SVGRenderer"
  1808. },
  1809. "Utils": {
  1810. "BufferGeometryUtils": "examples/en/utils/BufferGeometryUtils",
  1811. "CameraUtils": "examples/en/utils/CameraUtils",
  1812. "SceneUtils": "examples/en/utils/SceneUtils",
  1813. "SkeletonUtils": "examples/en/utils/SkeletonUtils"
  1814. }
  1815. },
  1816. "Developer Reference": {
  1817. "WebGLRenderer": {
  1818. "WebGLProgram": "api/en/renderers/webgl/WebGLProgram"
  1819. }
  1820. }
  1821. }
  1822. }