list.json 94 KB

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