list.json 92 KB

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