list.json 82 KB

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