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