list.json 95 KB

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