list.json 92 KB

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