list.js 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424
  1. var list = {
  2. "Manual": {
  3. "Getting Started": {
  4. "Creating a scene": "manual/{lan}/introduction/Creating-a-scene",
  5. "Import via modules": "manual/{lan}/introduction/Import-via-modules",
  6. "Browser support": "manual/{lan}/introduction/Browser-support",
  7. "WebGL compatibility check": "manual/{lan}/introduction/WebGL-compatibility-check",
  8. "How to run things locally": "manual/{lan}/introduction/How-to-run-things-locally",
  9. "Drawing lines": "manual/{lan}/introduction/Drawing-lines",
  10. "Creating text": "manual/{lan}/introduction/Creating-text",
  11. "Loading 3D models": "manual/{lan}/introduction/Loading-3D-models",
  12. "Migration guide": "manual/{lan}/introduction/Migration-guide",
  13. "Code style guide": "manual/{lan}/introduction/Code-style-guide",
  14. "FAQ": "manual/{lan}/introduction/FAQ",
  15. "Useful links": "manual/{lan}/introduction/Useful-links"
  16. },
  17. "Next Steps": {
  18. "How to update things": "manual/{lan}/introduction/How-to-update-things",
  19. "How to create VR content": "manual/{lan}/introduction/How-to-create-VR-content",
  20. "Matrix transformations": "manual/{lan}/introduction/Matrix-transformations",
  21. "Animation system": "manual/{lan}/introduction/Animation-system"
  22. },
  23. "Build Tools": {
  24. "Testing with NPM": "manual/{lan}/buildTools/Testing-with-NPM"
  25. }
  26. },
  27. "Reference": {
  28. "Animation": {
  29. "AnimationAction": "api/{lan}/animation/AnimationAction",
  30. "AnimationClip": "api/{lan}/animation/AnimationClip",
  31. "AnimationMixer": "api/{lan}/animation/AnimationMixer",
  32. "AnimationObjectGroup": "api/{lan}/animation/AnimationObjectGroup",
  33. "AnimationUtils": "api/{lan}/animation/AnimationUtils",
  34. "KeyframeTrack": "api/{lan}/animation/KeyframeTrack",
  35. "PropertyBinding": "api/{lan}/animation/PropertyBinding",
  36. "PropertyMixer": "api/{lan}/animation/PropertyMixer"
  37. },
  38. "Animation / Tracks": {
  39. "BooleanKeyframeTrack": "api/{lan}/animation/tracks/BooleanKeyframeTrack",
  40. "ColorKeyframeTrack": "api/{lan}/animation/tracks/ColorKeyframeTrack",
  41. "NumberKeyframeTrack": "api/{lan}/animation/tracks/NumberKeyframeTrack",
  42. "QuaternionKeyframeTrack": "api/{lan}/animation/tracks/QuaternionKeyframeTrack",
  43. "StringKeyframeTrack": "api/{lan}/animation/tracks/StringKeyframeTrack",
  44. "VectorKeyframeTrack": "api/{lan}/animation/tracks/VectorKeyframeTrack"
  45. },
  46. "Audio": {
  47. "Audio": "api/{lan}/audio/Audio",
  48. "AudioAnalyser": "api/{lan}/audio/AudioAnalyser",
  49. "AudioContext": "api/{lan}/audio/AudioContext",
  50. "AudioListener": "api/{lan}/audio/AudioListener",
  51. "PositionalAudio": "api/{lan}/audio/PositionalAudio"
  52. },
  53. "Cameras": {
  54. "ArrayCamera": "api/{lan}/cameras/ArrayCamera",
  55. "Camera": "api/{lan}/cameras/Camera",
  56. "CubeCamera": "api/{lan}/cameras/CubeCamera",
  57. "OrthographicCamera": "api/{lan}/cameras/OrthographicCamera",
  58. "PerspectiveCamera": "api/{lan}/cameras/PerspectiveCamera",
  59. "StereoCamera": "api/{lan}/cameras/StereoCamera"
  60. },
  61. "Constants": {
  62. "Animation": "api/{lan}/constants/Animation",
  63. "Core": "api/{lan}/constants/Core",
  64. "CustomBlendingEquation": "api/{lan}/constants/CustomBlendingEquations",
  65. "DrawModes": "api/{lan}/constants/DrawModes",
  66. "Materials": "api/{lan}/constants/Materials",
  67. "Renderer": "api/{lan}/constants/Renderer",
  68. "Textures": "api/{lan}/constants/Textures"
  69. },
  70. "Core": {
  71. "BufferAttribute": "api/{lan}/core/BufferAttribute",
  72. "BufferGeometry": "api/{lan}/core/BufferGeometry",
  73. "Clock": "api/{lan}/core/Clock",
  74. "DirectGeometry": "api/{lan}/core/DirectGeometry",
  75. "EventDispatcher": "api/{lan}/core/EventDispatcher",
  76. "Face3": "api/{lan}/core/Face3",
  77. "Geometry": "api/{lan}/core/Geometry",
  78. "InstancedBufferAttribute": "api/{lan}/core/InstancedBufferAttribute",
  79. "InstancedBufferGeometry": "api/{lan}/core/InstancedBufferGeometry",
  80. "InstancedInterleavedBuffer": "api/{lan}/core/InstancedInterleavedBuffer",
  81. "InterleavedBuffer": "api/{lan}/core/InterleavedBuffer",
  82. "InterleavedBufferAttribute": "api/{lan}/core/InterleavedBufferAttribute",
  83. "Layers": "api/{lan}/core/Layers",
  84. "Object3D": "api/{lan}/core/Object3D",
  85. "Raycaster": "api/{lan}/core/Raycaster",
  86. "Uniform": "api/{lan}/core/Uniform"
  87. },
  88. "Core / BufferAttributes": {
  89. "BufferAttribute Types": "api/{lan}/core/bufferAttributeTypes/BufferAttributeTypes"
  90. },
  91. "Deprecated": {
  92. "DeprecatedList": "api/{lan}/deprecated/DeprecatedList"
  93. },
  94. "Extras": {
  95. "Earcut": "api/{lan}/extras/Earcut",
  96. "ShapeUtils": "api/{lan}/extras/ShapeUtils"
  97. },
  98. "Extras / Core": {
  99. "Curve": "api/{lan}/extras/core/Curve",
  100. "CurvePath": "api/{lan}/extras/core/CurvePath",
  101. "Font": "api/{lan}/extras/core/Font",
  102. "Interpolations": "api/{lan}/extras/core/Interpolations",
  103. "Path": "api/{lan}/extras/core/Path",
  104. "Shape": "api/{lan}/extras/core/Shape",
  105. "ShapePath": "api/{lan}/extras/core/ShapePath"
  106. },
  107. "Extras / Curves": {
  108. "ArcCurve": "api/{lan}/extras/curves/ArcCurve",
  109. "CatmullRomCurve3": "api/{lan}/extras/curves/CatmullRomCurve3",
  110. "CubicBezierCurve": "api/{lan}/extras/curves/CubicBezierCurve",
  111. "CubicBezierCurve3": "api/{lan}/extras/curves/CubicBezierCurve3",
  112. "EllipseCurve": "api/{lan}/extras/curves/EllipseCurve",
  113. "LineCurve": "api/{lan}/extras/curves/LineCurve",
  114. "LineCurve3": "api/{lan}/extras/curves/LineCurve3",
  115. "QuadraticBezierCurve": "api/{lan}/extras/curves/QuadraticBezierCurve",
  116. "QuadraticBezierCurve3": "api/{lan}/extras/curves/QuadraticBezierCurve3",
  117. "SplineCurve": "api/{lan}/extras/curves/SplineCurve"
  118. },
  119. "Extras / Objects": {
  120. "ImmediateRenderObject": "api/{lan}/extras/objects/ImmediateRenderObject",
  121. },
  122. "Geometries": {
  123. "BoxBufferGeometry": "api/{lan}/geometries/BoxBufferGeometry",
  124. "BoxGeometry": "api/{lan}/geometries/BoxGeometry",
  125. "CircleBufferGeometry": "api/{lan}/geometries/CircleBufferGeometry",
  126. "CircleGeometry": "api/{lan}/geometries/CircleGeometry",
  127. "ConeBufferGeometry": "api/{lan}/geometries/ConeBufferGeometry",
  128. "ConeGeometry": "api/{lan}/geometries/ConeGeometry",
  129. "CylinderBufferGeometry": "api/{lan}/geometries/CylinderBufferGeometry",
  130. "CylinderGeometry": "api/{lan}/geometries/CylinderGeometry",
  131. "DodecahedronBufferGeometry": "api/{lan}/geometries/DodecahedronBufferGeometry",
  132. "DodecahedronGeometry": "api/{lan}/geometries/DodecahedronGeometry",
  133. "EdgesGeometry": "api/{lan}/geometries/EdgesGeometry",
  134. "ExtrudeBufferGeometry": "api/{lan}/geometries/ExtrudeBufferGeometry",
  135. "ExtrudeGeometry": "api/{lan}/geometries/ExtrudeGeometry",
  136. "IcosahedronBufferGeometry": "api/{lan}/geometries/IcosahedronBufferGeometry",
  137. "IcosahedronGeometry": "api/{lan}/geometries/IcosahedronGeometry",
  138. "LatheBufferGeometry": "api/{lan}/geometries/LatheBufferGeometry",
  139. "LatheGeometry": "api/{lan}/geometries/LatheGeometry",
  140. "OctahedronBufferGeometry": "api/{lan}/geometries/OctahedronBufferGeometry",
  141. "OctahedronGeometry": "api/{lan}/geometries/OctahedronGeometry",
  142. "ParametricBufferGeometry": "api/{lan}/geometries/ParametricBufferGeometry",
  143. "ParametricGeometry": "api/{lan}/geometries/ParametricGeometry",
  144. "PlaneBufferGeometry": "api/{lan}/geometries/PlaneBufferGeometry",
  145. "PlaneGeometry": "api/{lan}/geometries/PlaneGeometry",
  146. "PolyhedronBufferGeometry": "api/{lan}/geometries/PolyhedronBufferGeometry",
  147. "PolyhedronGeometry": "api/{lan}/geometries/PolyhedronGeometry",
  148. "RingBufferGeometry": "api/{lan}/geometries/RingBufferGeometry",
  149. "RingGeometry": "api/{lan}/geometries/RingGeometry",
  150. "ShapeBufferGeometry": "api/{lan}/geometries/ShapeBufferGeometry",
  151. "ShapeGeometry": "api/{lan}/geometries/ShapeGeometry",
  152. "SphereBufferGeometry": "api/{lan}/geometries/SphereBufferGeometry",
  153. "SphereGeometry": "api/{lan}/geometries/SphereGeometry",
  154. "TetrahedronBufferGeometry": "api/{lan}/geometries/TetrahedronBufferGeometry",
  155. "TetrahedronGeometry": "api/{lan}/geometries/TetrahedronGeometry",
  156. "TextBufferGeometry": "api/{lan}/geometries/TextBufferGeometry",
  157. "TextGeometry": "api/{lan}/geometries/TextGeometry",
  158. "TorusBufferGeometry": "api/{lan}/geometries/TorusBufferGeometry",
  159. "TorusGeometry": "api/{lan}/geometries/TorusGeometry",
  160. "TorusKnotBufferGeometry": "api/{lan}/geometries/TorusKnotBufferGeometry",
  161. "TorusKnotGeometry": "api/{lan}/geometries/TorusKnotGeometry",
  162. "TubeBufferGeometry": "api/{lan}/geometries/TubeBufferGeometry",
  163. "TubeGeometry": "api/{lan}/geometries/TubeGeometry",
  164. "WireframeGeometry": "api/{lan}/geometries/WireframeGeometry"
  165. },
  166. "Helpers": {
  167. "ArrowHelper": "api/{lan}/helpers/ArrowHelper",
  168. "AxesHelper": "api/{lan}/helpers/AxesHelper",
  169. "BoxHelper": "api/{lan}/helpers/BoxHelper",
  170. "Box3Helper": "api/{lan}/helpers/Box3Helper",
  171. "CameraHelper": "api/{lan}/helpers/CameraHelper",
  172. "DirectionalLightHelper": "api/{lan}/helpers/DirectionalLightHelper",
  173. "FaceNormalsHelper": "api/{lan}/helpers/FaceNormalsHelper",
  174. "GridHelper": "api/{lan}/helpers/GridHelper",
  175. "PolarGridHelper": "api/{lan}/helpers/PolarGridHelper",
  176. "HemisphereLightHelper": "api/{lan}/helpers/HemisphereLightHelper",
  177. "PlaneHelper": "api/{lan}/helpers/PlaneHelper",
  178. "PointLightHelper": "api/{lan}/helpers/PointLightHelper",
  179. "RectAreaLightHelper": "api/{lan}/helpers/RectAreaLightHelper",
  180. "SkeletonHelper": "api/{lan}/helpers/SkeletonHelper",
  181. "SpotLightHelper": "api/{lan}/helpers/SpotLightHelper",
  182. "VertexNormalsHelper": "api/{lan}/helpers/VertexNormalsHelper"
  183. },
  184. "Lights": {
  185. "AmbientLight": "api/{lan}/lights/AmbientLight",
  186. "DirectionalLight": "api/{lan}/lights/DirectionalLight",
  187. "HemisphereLight": "api/{lan}/lights/HemisphereLight",
  188. "Light": "api/{lan}/lights/Light",
  189. "PointLight": "api/{lan}/lights/PointLight",
  190. "RectAreaLight": "api/{lan}/lights/RectAreaLight",
  191. "SpotLight": "api/{lan}/lights/SpotLight"
  192. },
  193. "Lights / Shadows": {
  194. "DirectionalLightShadow": "api/{lan}/lights/shadows/DirectionalLightShadow",
  195. "LightShadow": "api/{lan}/lights/shadows/LightShadow",
  196. "SpotLightShadow": "api/{lan}/lights/shadows/SpotLightShadow"
  197. },
  198. "Loaders": {
  199. "AnimationLoader": "api/{lan}/loaders/AnimationLoader",
  200. "AudioLoader": "api/{lan}/loaders/AudioLoader",
  201. "BufferGeometryLoader": "api/{lan}/loaders/BufferGeometryLoader",
  202. "Cache": "api/{lan}/loaders/Cache",
  203. "CompressedTextureLoader": "api/{lan}/loaders/CompressedTextureLoader",
  204. "CubeTextureLoader": "api/{lan}/loaders/CubeTextureLoader",
  205. "DataTextureLoader": "api/{lan}/loaders/DataTextureLoader",
  206. "FileLoader": "api/{lan}/loaders/FileLoader",
  207. "FontLoader": "api/{lan}/loaders/FontLoader",
  208. "ImageBitmapLoader": "api/{lan}/loaders/ImageBitmapLoader",
  209. "ImageLoader": "api/{lan}/loaders/ImageLoader",
  210. "JSONLoader": "api/{lan}/loaders/JSONLoader",
  211. "Loader": "api/{lan}/loaders/Loader",
  212. "LoaderUtils": "api/{lan}/loaders/LoaderUtils",
  213. "MaterialLoader": "api/{lan}/loaders/MaterialLoader",
  214. "ObjectLoader": "api/{lan}/loaders/ObjectLoader",
  215. "TextureLoader": "api/{lan}/loaders/TextureLoader"
  216. },
  217. "Loaders / Managers": {
  218. "DefaultLoadingManager": "api/{lan}/loaders/managers/DefaultLoadingManager",
  219. "LoadingManager": "api/{lan}/loaders/managers/LoadingManager"
  220. },
  221. "Materials": {
  222. "LineBasicMaterial": "api/{lan}/materials/LineBasicMaterial",
  223. "LineDashedMaterial": "api/{lan}/materials/LineDashedMaterial",
  224. "Material": "api/{lan}/materials/Material",
  225. "MeshBasicMaterial": "api/{lan}/materials/MeshBasicMaterial",
  226. "MeshDepthMaterial": "api/{lan}/materials/MeshDepthMaterial",
  227. "MeshLambertMaterial": "api/{lan}/materials/MeshLambertMaterial",
  228. "MeshNormalMaterial": "api/{lan}/materials/MeshNormalMaterial",
  229. "MeshPhongMaterial": "api/{lan}/materials/MeshPhongMaterial",
  230. "MeshPhysicalMaterial": "api/{lan}/materials/MeshPhysicalMaterial",
  231. "MeshStandardMaterial": "api/{lan}/materials/MeshStandardMaterial",
  232. "MeshToonMaterial": "api/{lan}/materials/MeshToonMaterial",
  233. "PointsMaterial": "api/{lan}/materials/PointsMaterial",
  234. "RawShaderMaterial": "api/{lan}/materials/RawShaderMaterial",
  235. "ShaderMaterial": "api/{lan}/materials/ShaderMaterial",
  236. "ShadowMaterial": "api/{lan}/materials/ShadowMaterial",
  237. "SpriteMaterial": "api/{lan}/materials/SpriteMaterial"
  238. },
  239. "Math": {
  240. "Box2": "api/{lan}/math/Box2",
  241. "Box3": "api/{lan}/math/Box3",
  242. "Color": "api/{lan}/math/Color",
  243. "Cylindrical": "api/{lan}/math/Cylindrical",
  244. "Euler": "api/{lan}/math/Euler",
  245. "Frustum": "api/{lan}/math/Frustum",
  246. "Interpolant": "api/{lan}/math/Interpolant",
  247. "Line3": "api/{lan}/math/Line3",
  248. "Math": "api/{lan}/math/Math",
  249. "Matrix3": "api/{lan}/math/Matrix3",
  250. "Matrix4": "api/{lan}/math/Matrix4",
  251. "Plane": "api/{lan}/math/Plane",
  252. "Quaternion": "api/{lan}/math/Quaternion",
  253. "Ray": "api/{lan}/math/Ray",
  254. "Sphere": "api/{lan}/math/Sphere",
  255. "Spherical": "api/{lan}/math/Spherical",
  256. "Triangle": "api/{lan}/math/Triangle",
  257. "Vector2": "api/{lan}/math/Vector2",
  258. "Vector3": "api/{lan}/math/Vector3",
  259. "Vector4": "api/{lan}/math/Vector4"
  260. },
  261. "Math / Interpolants": {
  262. "CubicInterpolant": "api/{lan}/math/interpolants/CubicInterpolant",
  263. "DiscreteInterpolant": "api/{lan}/math/interpolants/DiscreteInterpolant",
  264. "LinearInterpolant": "api/{lan}/math/interpolants/LinearInterpolant",
  265. "QuaternionLinearInterpolant": "api/{lan}/math/interpolants/QuaternionLinearInterpolant"
  266. },
  267. "Objects": {
  268. "Bone": "api/{lan}/objects/Bone",
  269. "Group": "api/{lan}/objects/Group",
  270. "Line": "api/{lan}/objects/Line",
  271. "LineLoop": "api/{lan}/objects/LineLoop",
  272. "LineSegments": "api/{lan}/objects/LineSegments",
  273. "LOD": "api/{lan}/objects/LOD",
  274. "Mesh": "api/{lan}/objects/Mesh",
  275. "Points": "api/{lan}/objects/Points",
  276. "Skeleton": "api/{lan}/objects/Skeleton",
  277. "SkinnedMesh": "api/{lan}/objects/SkinnedMesh",
  278. "Sprite": "api/{lan}/objects/Sprite"
  279. },
  280. "Renderers": {
  281. "WebGLRenderer": "api/{lan}/renderers/WebGLRenderer",
  282. "WebGLRenderTarget": "api/{lan}/renderers/WebGLRenderTarget",
  283. "WebGLRenderTargetCube": "api/{lan}/renderers/WebGLRenderTargetCube"
  284. },
  285. "Renderers / Shaders": {
  286. "ShaderChunk": "api/{lan}/renderers/shaders/ShaderChunk",
  287. "ShaderLib": "api/{lan}/renderers/shaders/ShaderLib",
  288. "UniformsLib": "api/{lan}/renderers/shaders/UniformsLib",
  289. "UniformsUtils": "api/{lan}/renderers/shaders/UniformsUtils"
  290. },
  291. "Scenes": {
  292. "Fog": "api/{lan}/scenes/Fog",
  293. "FogExp2": "api/{lan}/scenes/FogExp2",
  294. "Scene": "api/{lan}/scenes/Scene"
  295. },
  296. "Textures": {
  297. "CanvasTexture": "api/{lan}/textures/CanvasTexture",
  298. "CompressedTexture": "api/{lan}/textures/CompressedTexture",
  299. "CubeTexture": "api/{lan}/textures/CubeTexture",
  300. "DataTexture": "api/{lan}/textures/DataTexture",
  301. "DepthTexture": "api/{lan}/textures/DepthTexture",
  302. "Texture": "api/{lan}/textures/Texture",
  303. "VideoTexture": "api/{lan}/textures/VideoTexture"
  304. }
  305. },
  306. "Examples": {
  307. "Animations": {
  308. "CCDIKSolver": "examples/animations/CCDIKSolver",
  309. "MMDAnimationHelper": "examples/animations/MMDAnimationHelper",
  310. "MMDPhysics": "examples/animations/MMDPhysics"
  311. },
  312. "Controls": {
  313. "OrbitControls": "examples/controls/OrbitControls"
  314. },
  315. "Geometries": {
  316. "ConvexBufferGeometry": "examples/geometries/ConvexBufferGeometry",
  317. "ConvexGeometry": "examples/geometries/ConvexGeometry",
  318. "DecalGeometry": "examples/geometries/DecalGeometry"
  319. },
  320. "Loaders": {
  321. "BabylonLoader": "examples/loaders/BabylonLoader",
  322. "GLTFLoader": "examples/loaders/GLTFLoader",
  323. "MMDLoader": "examples/loaders/MMDLoader",
  324. "MTLLoader": "examples/loaders/MTLLoader",
  325. "OBJLoader": "examples/loaders/OBJLoader",
  326. "OBJLoader2": "examples/loaders/OBJLoader2",
  327. "LoaderSupport": "examples/loaders/LoaderSupport",
  328. "PCDLoader": "examples/loaders/PCDLoader",
  329. "PDBLoader": "examples/loaders/PDBLoader",
  330. "SVGLoader": "examples/loaders/SVGLoader",
  331. "TGALoader": "examples/loaders/TGALoader",
  332. "PRWMLoader": "examples/loaders/PRWMLoader"
  333. },
  334. "Objects": {
  335. "Lensflare": "examples/objects/Lensflare",
  336. },
  337. "Exporters": {
  338. "GLTFExporter": "examples/exporters/GLTFExporter",
  339. "PLYExporter": "examples/exporters/PLYExporter"
  340. },
  341. "Plugins": {
  342. "LookupTable": "examples/Lut",
  343. "SpriteCanvasMaterial": "examples/SpriteCanvasMaterial"
  344. },
  345. "QuickHull": {
  346. "Face": "examples/quickhull/Face",
  347. "HalfEdge": "examples/quickhull/HalfEdge",
  348. "QuickHull": "examples/quickhull/QuickHull",
  349. "VertexNode": "examples/quickhull/VertexNode",
  350. "VertexList": "examples/quickhull/VertexList"
  351. },
  352. "Renderers": {
  353. "CanvasRenderer": "examples/renderers/CanvasRenderer",
  354. "CSS2DRenderer": "examples/renderers/CSS2DRenderer",
  355. "CSS3DRenderer": "examples/renderers/CSS3DRenderer",
  356. "SVGRenderer": "examples/renderers/SVGRenderer"
  357. },
  358. "Utils": {
  359. "BufferGeometryUtils": "examples/utils/BufferGeometryUtils",
  360. "SceneUtils": "examples/utils/SceneUtils"
  361. }
  362. },
  363. "Developer Reference": {
  364. "Polyfills": {
  365. "Polyfills": "api/{lan}/Polyfills"
  366. },
  367. "WebGLRenderer": {
  368. "WebGLProgram": "api/{lan}/renderers/webgl/WebGLProgram",
  369. "WebGLShader": "api/{lan}/renderers/webgl/WebGLShader",
  370. "WebGLState": "api/{lan}/renderers/webgl/WebGLState"
  371. }
  372. }
  373. };