1
0

list.json 92 KB

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