list.json 94 KB

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