list.json 94 KB

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