list.js 36.2 KB
Newer Older
1
var list = {
2

M
Mr.doob 已提交
3 4 5 6 7 8 9 10 11 12
	"en": {

		"Manual": {

			"Getting Started": {
				"Creating a scene": "manual/en/introduction/Creating-a-scene",
				"Import via modules": "manual/en/introduction/Import-via-modules",
				"Browser support": "manual/en/introduction/Browser-support",
				"WebGL compatibility check": "manual/en/introduction/WebGL-compatibility-check",
				"How to run things locally": "manual/en/introduction/How-to-run-things-locally",
13
				"Typescript setup": "manual/en/introduction/Typescript-setup",
G
gogoend 已提交
14
				"How to use WebGL 2": "manual/en/introduction/How-to-use-WebGL2",
M
Mr.doob 已提交
15 16 17 18 19 20 21 22 23
				"Drawing lines": "manual/en/introduction/Drawing-lines",
				"Creating text": "manual/en/introduction/Creating-text",
				"Loading 3D models": "manual/en/introduction/Loading-3D-models",
				"FAQ": "manual/en/introduction/FAQ",
				"Useful links": "manual/en/introduction/Useful-links"
			},

			"Next Steps": {
				"How to update things": "manual/en/introduction/How-to-update-things",
24
				"How to dispose of objects": "manual/en/introduction/How-to-dispose-of-objects",
M
Mr.doob 已提交
25
				"How to create VR content": "manual/en/introduction/How-to-create-VR-content",
26
				"How to use post-processing": "manual/en/introduction/How-to-use-post-processing",
M
Mr.doob 已提交
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
				"Matrix transformations": "manual/en/introduction/Matrix-transformations",
				"Animation system": "manual/en/introduction/Animation-system"
			},

			"Build Tools": {
				"Testing with NPM": "manual/en/buildTools/Testing-with-NPM"
			}

		},

		"Reference": {

			"Animation": {
				"AnimationAction": "api/en/animation/AnimationAction",
				"AnimationClip": "api/en/animation/AnimationClip",
				"AnimationMixer": "api/en/animation/AnimationMixer",
				"AnimationObjectGroup": "api/en/animation/AnimationObjectGroup",
				"AnimationUtils": "api/en/animation/AnimationUtils",
				"KeyframeTrack": "api/en/animation/KeyframeTrack",
				"PropertyBinding": "api/en/animation/PropertyBinding",
				"PropertyMixer": "api/en/animation/PropertyMixer"
			},

			"Animation / Tracks": {
				"BooleanKeyframeTrack": "api/en/animation/tracks/BooleanKeyframeTrack",
				"ColorKeyframeTrack": "api/en/animation/tracks/ColorKeyframeTrack",
				"NumberKeyframeTrack": "api/en/animation/tracks/NumberKeyframeTrack",
				"QuaternionKeyframeTrack": "api/en/animation/tracks/QuaternionKeyframeTrack",
				"StringKeyframeTrack": "api/en/animation/tracks/StringKeyframeTrack",
				"VectorKeyframeTrack": "api/en/animation/tracks/VectorKeyframeTrack"
			},

			"Audio": {
				"Audio": "api/en/audio/Audio",
				"AudioAnalyser": "api/en/audio/AudioAnalyser",
				"AudioContext": "api/en/audio/AudioContext",
				"AudioListener": "api/en/audio/AudioListener",
				"PositionalAudio": "api/en/audio/PositionalAudio"
			},

			"Cameras": {
				"ArrayCamera": "api/en/cameras/ArrayCamera",
				"Camera": "api/en/cameras/Camera",
				"CubeCamera": "api/en/cameras/CubeCamera",
				"OrthographicCamera": "api/en/cameras/OrthographicCamera",
				"PerspectiveCamera": "api/en/cameras/PerspectiveCamera",
				"StereoCamera": "api/en/cameras/StereoCamera"
			},

			"Constants": {
				"Animation": "api/en/constants/Animation",
				"Core": "api/en/constants/Core",
				"CustomBlendingEquation": "api/en/constants/CustomBlendingEquations",
				"Materials": "api/en/constants/Materials",
				"Renderer": "api/en/constants/Renderer",
				"Textures": "api/en/constants/Textures"
			},

			"Core": {
				"BufferAttribute": "api/en/core/BufferAttribute",
				"BufferGeometry": "api/en/core/BufferGeometry",
				"Clock": "api/en/core/Clock",
				"DirectGeometry": "api/en/core/DirectGeometry",
				"EventDispatcher": "api/en/core/EventDispatcher",
				"Face3": "api/en/core/Face3",
				"Geometry": "api/en/core/Geometry",
				"InstancedBufferAttribute": "api/en/core/InstancedBufferAttribute",
				"InstancedBufferGeometry": "api/en/core/InstancedBufferGeometry",
				"InstancedInterleavedBuffer": "api/en/core/InstancedInterleavedBuffer",
				"InterleavedBuffer": "api/en/core/InterleavedBuffer",
				"InterleavedBufferAttribute": "api/en/core/InterleavedBufferAttribute",
				"Layers": "api/en/core/Layers",
				"Object3D": "api/en/core/Object3D",
				"Raycaster": "api/en/core/Raycaster",
				"Uniform": "api/en/core/Uniform"
			},

			"Core / BufferAttributes": {
				"BufferAttribute Types": "api/en/core/bufferAttributeTypes/BufferAttributeTypes"
			},

			"Extras": {
				"Earcut": "api/en/extras/Earcut",
110 111 112
				"ImageUtils": "api/en/extras/ImageUtils",
				"PMREMGenerator": "api/en/extras/PMREMGenerator",
				"ShapeUtils": "api/en/extras/ShapeUtils",
M
Mr.doob 已提交
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
			},

			"Extras / Core": {
				"Curve": "api/en/extras/core/Curve",
				"CurvePath": "api/en/extras/core/CurvePath",
				"Font": "api/en/extras/core/Font",
				"Interpolations": "api/en/extras/core/Interpolations",
				"Path": "api/en/extras/core/Path",
				"Shape": "api/en/extras/core/Shape",
				"ShapePath": "api/en/extras/core/ShapePath"
			},

			"Extras / Curves": {
				"ArcCurve": "api/en/extras/curves/ArcCurve",
				"CatmullRomCurve3": "api/en/extras/curves/CatmullRomCurve3",
				"CubicBezierCurve": "api/en/extras/curves/CubicBezierCurve",
				"CubicBezierCurve3": "api/en/extras/curves/CubicBezierCurve3",
				"EllipseCurve": "api/en/extras/curves/EllipseCurve",
				"LineCurve": "api/en/extras/curves/LineCurve",
				"LineCurve3": "api/en/extras/curves/LineCurve3",
				"QuadraticBezierCurve": "api/en/extras/curves/QuadraticBezierCurve",
				"QuadraticBezierCurve3": "api/en/extras/curves/QuadraticBezierCurve3",
				"SplineCurve": "api/en/extras/curves/SplineCurve"
			},

			"Extras / Objects": {
				"ImmediateRenderObject": "api/en/extras/objects/ImmediateRenderObject",
			},

			"Geometries": {
				"BoxBufferGeometry": "api/en/geometries/BoxBufferGeometry",
				"BoxGeometry": "api/en/geometries/BoxGeometry",
				"CircleBufferGeometry": "api/en/geometries/CircleBufferGeometry",
				"CircleGeometry": "api/en/geometries/CircleGeometry",
				"ConeBufferGeometry": "api/en/geometries/ConeBufferGeometry",
				"ConeGeometry": "api/en/geometries/ConeGeometry",
				"CylinderBufferGeometry": "api/en/geometries/CylinderBufferGeometry",
				"CylinderGeometry": "api/en/geometries/CylinderGeometry",
				"DodecahedronBufferGeometry": "api/en/geometries/DodecahedronBufferGeometry",
				"DodecahedronGeometry": "api/en/geometries/DodecahedronGeometry",
				"EdgesGeometry": "api/en/geometries/EdgesGeometry",
				"ExtrudeBufferGeometry": "api/en/geometries/ExtrudeBufferGeometry",
				"ExtrudeGeometry": "api/en/geometries/ExtrudeGeometry",
				"IcosahedronBufferGeometry": "api/en/geometries/IcosahedronBufferGeometry",
				"IcosahedronGeometry": "api/en/geometries/IcosahedronGeometry",
				"LatheBufferGeometry": "api/en/geometries/LatheBufferGeometry",
				"LatheGeometry": "api/en/geometries/LatheGeometry",
				"OctahedronBufferGeometry": "api/en/geometries/OctahedronBufferGeometry",
				"OctahedronGeometry": "api/en/geometries/OctahedronGeometry",
				"ParametricBufferGeometry": "api/en/geometries/ParametricBufferGeometry",
				"ParametricGeometry": "api/en/geometries/ParametricGeometry",
				"PlaneBufferGeometry": "api/en/geometries/PlaneBufferGeometry",
				"PlaneGeometry": "api/en/geometries/PlaneGeometry",
				"PolyhedronBufferGeometry": "api/en/geometries/PolyhedronBufferGeometry",
				"PolyhedronGeometry": "api/en/geometries/PolyhedronGeometry",
				"RingBufferGeometry": "api/en/geometries/RingBufferGeometry",
				"RingGeometry": "api/en/geometries/RingGeometry",
				"ShapeBufferGeometry": "api/en/geometries/ShapeBufferGeometry",
				"ShapeGeometry": "api/en/geometries/ShapeGeometry",
				"SphereBufferGeometry": "api/en/geometries/SphereBufferGeometry",
				"SphereGeometry": "api/en/geometries/SphereGeometry",
				"TetrahedronBufferGeometry": "api/en/geometries/TetrahedronBufferGeometry",
				"TetrahedronGeometry": "api/en/geometries/TetrahedronGeometry",
				"TextBufferGeometry": "api/en/geometries/TextBufferGeometry",
				"TextGeometry": "api/en/geometries/TextGeometry",
				"TorusBufferGeometry": "api/en/geometries/TorusBufferGeometry",
				"TorusGeometry": "api/en/geometries/TorusGeometry",
				"TorusKnotBufferGeometry": "api/en/geometries/TorusKnotBufferGeometry",
				"TorusKnotGeometry": "api/en/geometries/TorusKnotGeometry",
				"TubeBufferGeometry": "api/en/geometries/TubeBufferGeometry",
				"TubeGeometry": "api/en/geometries/TubeGeometry",
				"WireframeGeometry": "api/en/geometries/WireframeGeometry"
			},

			"Helpers": {
				"ArrowHelper": "api/en/helpers/ArrowHelper",
				"AxesHelper": "api/en/helpers/AxesHelper",
				"BoxHelper": "api/en/helpers/BoxHelper",
				"Box3Helper": "api/en/helpers/Box3Helper",
				"CameraHelper": "api/en/helpers/CameraHelper",
				"DirectionalLightHelper": "api/en/helpers/DirectionalLightHelper",
				"GridHelper": "api/en/helpers/GridHelper",
				"PolarGridHelper": "api/en/helpers/PolarGridHelper",
				"HemisphereLightHelper": "api/en/helpers/HemisphereLightHelper",
				"PlaneHelper": "api/en/helpers/PlaneHelper",
				"PointLightHelper": "api/en/helpers/PointLightHelper",
				"SkeletonHelper": "api/en/helpers/SkeletonHelper",
M
Mugen87 已提交
200
				"SpotLightHelper": "api/en/helpers/SpotLightHelper"
M
Mr.doob 已提交
201 202 203 204 205 206 207 208 209 210 211 212 213 214
			},

			"Lights": {
				"AmbientLight": "api/en/lights/AmbientLight",
				"DirectionalLight": "api/en/lights/DirectionalLight",
				"HemisphereLight": "api/en/lights/HemisphereLight",
				"Light": "api/en/lights/Light",
				"PointLight": "api/en/lights/PointLight",
				"RectAreaLight": "api/en/lights/RectAreaLight",
				"SpotLight": "api/en/lights/SpotLight"
			},

			"Lights / Shadows": {
				"LightShadow": "api/en/lights/shadows/LightShadow",
S
supereggbert 已提交
215 216
				"PointLightShadow": "api/en/lights/shadows/PointLightShadow",
				"DirectionalLightShadow": "api/en/lights/shadows/DirectionalLightShadow",
M
Mr.doob 已提交
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
				"SpotLightShadow": "api/en/lights/shadows/SpotLightShadow"
			},

			"Loaders": {
				"AnimationLoader": "api/en/loaders/AnimationLoader",
				"AudioLoader": "api/en/loaders/AudioLoader",
				"BufferGeometryLoader": "api/en/loaders/BufferGeometryLoader",
				"Cache": "api/en/loaders/Cache",
				"CompressedTextureLoader": "api/en/loaders/CompressedTextureLoader",
				"CubeTextureLoader": "api/en/loaders/CubeTextureLoader",
				"DataTextureLoader": "api/en/loaders/DataTextureLoader",
				"FileLoader": "api/en/loaders/FileLoader",
				"FontLoader": "api/en/loaders/FontLoader",
				"ImageBitmapLoader": "api/en/loaders/ImageBitmapLoader",
				"ImageLoader": "api/en/loaders/ImageLoader",
				"Loader": "api/en/loaders/Loader",
				"LoaderUtils": "api/en/loaders/LoaderUtils",
				"MaterialLoader": "api/en/loaders/MaterialLoader",
				"ObjectLoader": "api/en/loaders/ObjectLoader",
				"TextureLoader": "api/en/loaders/TextureLoader"
			},

			"Loaders / Managers": {
				"DefaultLoadingManager": "api/en/loaders/managers/DefaultLoadingManager",
				"LoadingManager": "api/en/loaders/managers/LoadingManager"
			},

			"Materials": {
				"LineBasicMaterial": "api/en/materials/LineBasicMaterial",
				"LineDashedMaterial": "api/en/materials/LineDashedMaterial",
				"Material": "api/en/materials/Material",
				"MeshBasicMaterial": "api/en/materials/MeshBasicMaterial",
				"MeshDepthMaterial": "api/en/materials/MeshDepthMaterial",
M
Mugen87 已提交
250
				"MeshDistanceMaterial": "api/en/materials/MeshDistanceMaterial",
M
Mr.doob 已提交
251
				"MeshLambertMaterial": "api/en/materials/MeshLambertMaterial",
M
Mugen87 已提交
252
				"MeshMatcapMaterial": "api/en/materials/MeshMatcapMaterial",
M
Mr.doob 已提交
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
				"MeshNormalMaterial": "api/en/materials/MeshNormalMaterial",
				"MeshPhongMaterial": "api/en/materials/MeshPhongMaterial",
				"MeshPhysicalMaterial": "api/en/materials/MeshPhysicalMaterial",
				"MeshStandardMaterial": "api/en/materials/MeshStandardMaterial",
				"MeshToonMaterial": "api/en/materials/MeshToonMaterial",
				"PointsMaterial": "api/en/materials/PointsMaterial",
				"RawShaderMaterial": "api/en/materials/RawShaderMaterial",
				"ShaderMaterial": "api/en/materials/ShaderMaterial",
				"ShadowMaterial": "api/en/materials/ShadowMaterial",
				"SpriteMaterial": "api/en/materials/SpriteMaterial"
			},

			"Math": {
				"Box2": "api/en/math/Box2",
				"Box3": "api/en/math/Box3",
				"Color": "api/en/math/Color",
				"Cylindrical": "api/en/math/Cylindrical",
				"Euler": "api/en/math/Euler",
				"Frustum": "api/en/math/Frustum",
				"Interpolant": "api/en/math/Interpolant",
				"Line3": "api/en/math/Line3",
M
Mugen87 已提交
274
				"MathUtils": "api/en/math/MathUtils",
M
Mr.doob 已提交
275 276 277 278 279 280 281
				"Matrix3": "api/en/math/Matrix3",
				"Matrix4": "api/en/math/Matrix4",
				"Plane": "api/en/math/Plane",
				"Quaternion": "api/en/math/Quaternion",
				"Ray": "api/en/math/Ray",
				"Sphere": "api/en/math/Sphere",
				"Spherical": "api/en/math/Spherical",
M
Mugen87 已提交
282
				"SphericalHarmonics": "api/en/math/SphericalHarmonics",
M
Mr.doob 已提交
283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
				"Triangle": "api/en/math/Triangle",
				"Vector2": "api/en/math/Vector2",
				"Vector3": "api/en/math/Vector3",
				"Vector4": "api/en/math/Vector4"
			},

			"Math / Interpolants": {
				"CubicInterpolant": "api/en/math/interpolants/CubicInterpolant",
				"DiscreteInterpolant": "api/en/math/interpolants/DiscreteInterpolant",
				"LinearInterpolant": "api/en/math/interpolants/LinearInterpolant",
				"QuaternionLinearInterpolant": "api/en/math/interpolants/QuaternionLinearInterpolant"
			},

			"Objects": {
				"Bone": "api/en/objects/Bone",
				"Group": "api/en/objects/Group",
M
Mugen87 已提交
299
				"InstancedMesh": "api/en/objects/InstancedMesh",
M
Mr.doob 已提交
300 301 302 303 304 305 306 307 308 309 310 311
				"Line": "api/en/objects/Line",
				"LineLoop": "api/en/objects/LineLoop",
				"LineSegments": "api/en/objects/LineSegments",
				"LOD": "api/en/objects/LOD",
				"Mesh": "api/en/objects/Mesh",
				"Points": "api/en/objects/Points",
				"Skeleton": "api/en/objects/Skeleton",
				"SkinnedMesh": "api/en/objects/SkinnedMesh",
				"Sprite": "api/en/objects/Sprite"
			},

			"Renderers": {
312
				"WebGLMultisampleRenderTarget": "api/en/renderers/WebGLMultisampleRenderTarget",
M
Mr.doob 已提交
313 314
				"WebGLRenderer": "api/en/renderers/WebGLRenderer",
				"WebGLRenderTarget": "api/en/renderers/WebGLRenderTarget",
315
				"WebGLCubeRenderTarget": "api/en/renderers/WebGLCubeRenderTarget"
M
Mr.doob 已提交
316 317 318 319 320 321 322 323 324
			},

			"Renderers / Shaders": {
				"ShaderChunk": "api/en/renderers/shaders/ShaderChunk",
				"ShaderLib": "api/en/renderers/shaders/ShaderLib",
				"UniformsLib": "api/en/renderers/shaders/UniformsLib",
				"UniformsUtils": "api/en/renderers/shaders/UniformsUtils"
			},

M
Mugen87 已提交
325 326 327 328
			"Renderers / WebXR": {
				"WebXRManager": "api/en/renderers/webxr/WebXRManager"
			},

M
Mr.doob 已提交
329 330 331 332 333 334 335 336 337 338 339
			"Scenes": {
				"Fog": "api/en/scenes/Fog",
				"FogExp2": "api/en/scenes/FogExp2",
				"Scene": "api/en/scenes/Scene"
			},

			"Textures": {
				"CanvasTexture": "api/en/textures/CanvasTexture",
				"CompressedTexture": "api/en/textures/CompressedTexture",
				"CubeTexture": "api/en/textures/CubeTexture",
				"DataTexture": "api/en/textures/DataTexture",
M
Mugen87 已提交
340
				"DataTexture3D": "api/en/textures/DataTexture3D",
M
Mr.doob 已提交
341 342 343 344 345 346 347 348 349 350
				"DepthTexture": "api/en/textures/DepthTexture",
				"Texture": "api/en/textures/Texture",
				"VideoTexture": "api/en/textures/VideoTexture"
			}

		},

		"Examples": {

			"Animations": {
M
Mugen87 已提交
351 352 353
				"CCDIKSolver": "examples/en/animations/CCDIKSolver",
				"MMDAnimationHelper": "examples/en/animations/MMDAnimationHelper",
				"MMDPhysics": "examples/en/animations/MMDPhysics"
M
Mr.doob 已提交
354 355 356
			},

			"Controls": {
357
				"DeviceOrientationControls": "examples/en/controls/DeviceOrientationControls",
M
Mugen87 已提交
358
				"DragControls": "examples/en/controls/DragControls",
M
Mugen87 已提交
359
				"FirstPersonControls": "examples/en/controls/FirstPersonControls",
M
Mugen87 已提交
360
				"FlyControls": "examples/en/controls/FlyControls",
M
Mugen87 已提交
361
				"OrbitControls": "examples/en/controls/OrbitControls",
M
Mugen87 已提交
362
				"PointerLockControls": "examples/en/controls/PointerLockControls",
M
Mugen87 已提交
363 364
				"TrackballControls": "examples/en/controls/TrackballControls",
				"TransformControls": "examples/en/controls/TransformControls"
M
Mr.doob 已提交
365 366 367
			},

			"Geometries": {
M
Mugen87 已提交
368 369 370
				"ConvexBufferGeometry": "examples/en/geometries/ConvexBufferGeometry",
				"ConvexGeometry": "examples/en/geometries/ConvexGeometry",
				"DecalGeometry": "examples/en/geometries/DecalGeometry"
M
Mr.doob 已提交
371 372
			},

M
Mugen87 已提交
373 374
			"Helpers": {
				"FaceNormalsHelper": "examples/en/helpers/FaceNormalsHelper",
375
				"LightProbeHelper": "examples/en/helpers/LightProbeHelper",
M
Mugen87 已提交
376 377 378 379 380 381
				"PositionalAudioHelper": "examples/en/helpers/PositionalAudioHelper",
				"RectAreaLightHelper": "examples/en/helpers/RectAreaLightHelper",
				"VertexNormalsHelper": "examples/en/helpers/VertexNormalsHelper",
				"VertexTangentsHelper": "examples/en/helpers/VertexTangentsHelper"
			},

M
Mr.doob 已提交
382
			"Loaders": {
M
Mugen87 已提交
383 384 385 386 387 388 389
				"BasisTextureLoader": "examples/en/loaders/BasisTextureLoader",
				"DRACOLoader": "examples/en/loaders/DRACOLoader",
				"GLTFLoader": "examples/en/loaders/GLTFLoader",
				"MMDLoader": "examples/en/loaders/MMDLoader",
				"MTLLoader": "examples/en/loaders/MTLLoader",
				"OBJLoader": "examples/en/loaders/OBJLoader",
				"OBJLoader2": "examples/en/loaders/OBJLoader2",
390
				"OBJLoader2Parallel": "examples/en/loaders/OBJLoader2Parallel",
M
Mugen87 已提交
391 392
				"PCDLoader": "examples/en/loaders/PCDLoader",
				"PDBLoader": "examples/en/loaders/PDBLoader",
393
				"PRWMLoader": "examples/en/loaders/PRWMLoader",
M
Mugen87 已提交
394
				"SVGLoader": "examples/en/loaders/SVGLoader",
395
				"TGALoader": "examples/en/loaders/TGALoader"
M
Mr.doob 已提交
396 397 398
			},

			"Objects": {
M
Mugen87 已提交
399
				"Lensflare": "examples/en/objects/Lensflare",
M
Mr.doob 已提交
400 401
			},

M
Mugen87 已提交
402 403 404 405
			"Post-Processing": {
				"EffectComposer": "examples/en/postprocessing/EffectComposer"
			},

M
Mr.doob 已提交
406
			"Exporters": {
M
Mugen87 已提交
407 408 409
				"GLTFExporter": "examples/en/exporters/GLTFExporter",
				"PLYExporter": "examples/en/exporters/PLYExporter",
				"ColladaExporter": "examples/en/exporters/ColladaExporter"
M
Mr.doob 已提交
410 411
			},

412 413 414
			"Math": {
				"LookupTable": "examples/en/math/Lut",
				"MeshSurfaceSampler": "examples/en/math/MeshSurfaceSampler",
M
Mr.doob 已提交
415 416
			},

417
			"ConvexHull": {
M
Mugen87 已提交
418 419 420 421 422
				"Face": "examples/en/math/convexhull/Face",
				"HalfEdge": "examples/en/math/convexhull/HalfEdge",
				"ConvexHull": "examples/en/math/convexhull/ConvexHull",
				"VertexNode": "examples/en/math/convexhull/VertexNode",
				"VertexList": "examples/en/math/convexhull/VertexList"
M
Mr.doob 已提交
423 424 425
			},

			"Renderers": {
M
Mugen87 已提交
426 427 428
				"CSS2DRenderer": "examples/en/renderers/CSS2DRenderer",
				"CSS3DRenderer": "examples/en/renderers/CSS3DRenderer",
				"SVGRenderer": "examples/en/renderers/SVGRenderer"
M
Mr.doob 已提交
429 430 431 432

			},

			"Utils": {
M
Mugen87 已提交
433 434 435
				"BufferGeometryUtils": "examples/en/utils/BufferGeometryUtils",
				"SceneUtils": "examples/en/utils/SceneUtils",
				"SkeletonUtils": "examples/en/utils/SkeletonUtils"
M
Mr.doob 已提交
436 437 438 439 440 441 442 443 444 445 446 447 448 449 450
			}

		},

		"Developer Reference": {

			"Polyfills": {
				"Polyfills": "api/en/Polyfills"
			},

			"WebGLRenderer": {
				"WebGLProgram": "api/en/renderers/webgl/WebGLProgram",
				"WebGLShader": "api/en/renderers/webgl/WebGLShader",
				"WebGLState": "api/en/renderers/webgl/WebGLState"
			}
J
Jost Schmithals 已提交
451 452 453 454 455

		}

	},

M
Mr.doob 已提交
456 457
	"zh": {

G
gogoend 已提交
458
		"手册": {
M
Mr.doob 已提交
459

G
gogoend 已提交
460
			"起步": {
M
Mr.doob 已提交
461 462 463 464 465
				"创建一个场景": "manual/zh/introduction/Creating-a-scene",
				"通过模块来引入": "manual/zh/introduction/Import-via-modules",
				"浏览器支持": "manual/zh/introduction/Browser-support",
				"WebGL兼容性检查": "manual/zh/introduction/WebGL-compatibility-check",
				"如何在本地运行Three.js": "manual/zh/introduction/How-to-run-things-locally",
L
linbingquan 已提交
466
				"Typescript设置": "manual/zh/introduction/Typescript-setup",
G
gogoend 已提交
467
				"如何使用WebGL 2": "manual/zh/introduction/How-to-use-WebGL2",
M
Mr.doob 已提交
468 469 470 471 472 473 474
				"画线": "manual/zh/introduction/Drawing-lines",
				"创建文字": "manual/zh/introduction/Creating-text",
				"载入3D模型": "manual/zh/introduction/Loading-3D-models",
				"常见问题": "manual/zh/introduction/FAQ",
				"一些有用的链接": "manual/zh/introduction/Useful-links"
			},

G
gogoend 已提交
475 476
			"进阶": {
				"如何更新场景": "manual/zh/introduction/How-to-update-things",
477
				"如何废置对象": "manual/zh/introduction/How-to-dispose-of-objects",
G
gogoend 已提交
478
				"如何创建VR内容": "manual/zh/introduction/How-to-create-VR-content",
479
				"如何使用后期处理": "manual/zh/introduction/How-to-use-post-processing",
G
gogoend 已提交
480 481
				"矩阵变换": "manual/zh/introduction/Matrix-transformations",
				"动画系统": "manual/zh/introduction/Animation-system"
M
Mr.doob 已提交
482 483
			},

G
gogoend 已提交
484 485
			"构建工具": {
				"使用NPM进行测试": "manual/zh/buildTools/Testing-with-NPM"
M
Mr.doob 已提交
486 487 488 489
			}

		},

G
gogoend 已提交
490
		"参考": {
M
Mr.doob 已提交
491

G
gogoend 已提交
492
			"动画": {
M
Mr.doob 已提交
493 494 495 496 497 498 499 500 501 502
				"AnimationAction": "api/zh/animation/AnimationAction",
				"AnimationClip": "api/zh/animation/AnimationClip",
				"AnimationMixer": "api/zh/animation/AnimationMixer",
				"AnimationObjectGroup": "api/zh/animation/AnimationObjectGroup",
				"AnimationUtils": "api/zh/animation/AnimationUtils",
				"KeyframeTrack": "api/zh/animation/KeyframeTrack",
				"PropertyBinding": "api/zh/animation/PropertyBinding",
				"PropertyMixer": "api/zh/animation/PropertyMixer"
			},

G
gogoend 已提交
503
			"动画 / 轨道": {
M
Mr.doob 已提交
504 505 506 507 508 509 510 511
				"BooleanKeyframeTrack": "api/zh/animation/tracks/BooleanKeyframeTrack",
				"ColorKeyframeTrack": "api/zh/animation/tracks/ColorKeyframeTrack",
				"NumberKeyframeTrack": "api/zh/animation/tracks/NumberKeyframeTrack",
				"QuaternionKeyframeTrack": "api/zh/animation/tracks/QuaternionKeyframeTrack",
				"StringKeyframeTrack": "api/zh/animation/tracks/StringKeyframeTrack",
				"VectorKeyframeTrack": "api/zh/animation/tracks/VectorKeyframeTrack"
			},

G
gogoend 已提交
512
			"音频": {
M
Mr.doob 已提交
513 514 515 516 517 518 519
				"Audio": "api/zh/audio/Audio",
				"AudioAnalyser": "api/zh/audio/AudioAnalyser",
				"AudioContext": "api/zh/audio/AudioContext",
				"AudioListener": "api/zh/audio/AudioListener",
				"PositionalAudio": "api/zh/audio/PositionalAudio"
			},

G
gogoend 已提交
520
			"摄像机": {
M
Mr.doob 已提交
521 522 523 524 525 526 527 528
				"ArrayCamera": "api/zh/cameras/ArrayCamera",
				"Camera": "api/zh/cameras/Camera",
				"CubeCamera": "api/zh/cameras/CubeCamera",
				"OrthographicCamera": "api/zh/cameras/OrthographicCamera",
				"PerspectiveCamera": "api/zh/cameras/PerspectiveCamera",
				"StereoCamera": "api/zh/cameras/StereoCamera"
			},

G
gogoend 已提交
529
			"常量": {
M
Mr.doob 已提交
530 531 532 533 534 535 536 537
				"Animation": "api/zh/constants/Animation",
				"Core": "api/zh/constants/Core",
				"CustomBlendingEquation": "api/zh/constants/CustomBlendingEquations",
				"Materials": "api/zh/constants/Materials",
				"Renderer": "api/zh/constants/Renderer",
				"Textures": "api/zh/constants/Textures"
			},

G
gogoend 已提交
538
			"核心": {
M
Mr.doob 已提交
539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556
				"BufferAttribute": "api/zh/core/BufferAttribute",
				"BufferGeometry": "api/zh/core/BufferGeometry",
				"Clock": "api/zh/core/Clock",
				"DirectGeometry": "api/zh/core/DirectGeometry",
				"EventDispatcher": "api/zh/core/EventDispatcher",
				"Face3": "api/zh/core/Face3",
				"Geometry": "api/zh/core/Geometry",
				"InstancedBufferAttribute": "api/zh/core/InstancedBufferAttribute",
				"InstancedBufferGeometry": "api/zh/core/InstancedBufferGeometry",
				"InstancedInterleavedBuffer": "api/zh/core/InstancedInterleavedBuffer",
				"InterleavedBuffer": "api/zh/core/InterleavedBuffer",
				"InterleavedBufferAttribute": "api/zh/core/InterleavedBufferAttribute",
				"Layers": "api/zh/core/Layers",
				"Object3D": "api/zh/core/Object3D",
				"Raycaster": "api/zh/core/Raycaster",
				"Uniform": "api/zh/core/Uniform"
			},

G
gogoend 已提交
557
			"核心 / BufferAttributes": {
M
Mr.doob 已提交
558 559 560
				"BufferAttribute Types": "api/zh/core/bufferAttributeTypes/BufferAttributeTypes"
			},

G
gogoend 已提交
561
			"附件": {
M
Mr.doob 已提交
562
				"Earcut": "api/zh/extras/Earcut",
563 564
				"ImageUtils": "api/zh/extras/ImageUtils",
				"PMREMGenerator": "api/zh/extras/PMREMGenerator",
M
Mr.doob 已提交
565 566 567
				"ShapeUtils": "api/zh/extras/ShapeUtils"
			},

G
gogoend 已提交
568
			"附件 / 核心": {
M
Mr.doob 已提交
569 570 571 572 573 574 575 576 577
				"Curve": "api/zh/extras/core/Curve",
				"CurvePath": "api/zh/extras/core/CurvePath",
				"Font": "api/zh/extras/core/Font",
				"Interpolations": "api/zh/extras/core/Interpolations",
				"Path": "api/zh/extras/core/Path",
				"Shape": "api/zh/extras/core/Shape",
				"ShapePath": "api/zh/extras/core/ShapePath"
			},

G
gogoend 已提交
578
			"附件 / 曲线": {
M
Mr.doob 已提交
579 580 581 582 583 584 585 586 587 588 589 590
				"ArcCurve": "api/zh/extras/curves/ArcCurve",
				"CatmullRomCurve3": "api/zh/extras/curves/CatmullRomCurve3",
				"CubicBezierCurve": "api/zh/extras/curves/CubicBezierCurve",
				"CubicBezierCurve3": "api/zh/extras/curves/CubicBezierCurve3",
				"EllipseCurve": "api/zh/extras/curves/EllipseCurve",
				"LineCurve": "api/zh/extras/curves/LineCurve",
				"LineCurve3": "api/zh/extras/curves/LineCurve3",
				"QuadraticBezierCurve": "api/zh/extras/curves/QuadraticBezierCurve",
				"QuadraticBezierCurve3": "api/zh/extras/curves/QuadraticBezierCurve3",
				"SplineCurve": "api/zh/extras/curves/SplineCurve"
			},

G
gogoend 已提交
591
			"附件 / 物体": {
M
Mr.doob 已提交
592 593 594
				"ImmediateRenderObject": "api/zh/extras/objects/ImmediateRenderObject",
			},

G
gogoend 已提交
595
			"几何体": {
M
Mr.doob 已提交
596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639
				"BoxBufferGeometry": "api/zh/geometries/BoxBufferGeometry",
				"BoxGeometry": "api/zh/geometries/BoxGeometry",
				"CircleBufferGeometry": "api/zh/geometries/CircleBufferGeometry",
				"CircleGeometry": "api/zh/geometries/CircleGeometry",
				"ConeBufferGeometry": "api/zh/geometries/ConeBufferGeometry",
				"ConeGeometry": "api/zh/geometries/ConeGeometry",
				"CylinderBufferGeometry": "api/zh/geometries/CylinderBufferGeometry",
				"CylinderGeometry": "api/zh/geometries/CylinderGeometry",
				"DodecahedronBufferGeometry": "api/zh/geometries/DodecahedronBufferGeometry",
				"DodecahedronGeometry": "api/zh/geometries/DodecahedronGeometry",
				"EdgesGeometry": "api/zh/geometries/EdgesGeometry",
				"ExtrudeBufferGeometry": "api/zh/geometries/ExtrudeBufferGeometry",
				"ExtrudeGeometry": "api/zh/geometries/ExtrudeGeometry",
				"IcosahedronBufferGeometry": "api/zh/geometries/IcosahedronBufferGeometry",
				"IcosahedronGeometry": "api/zh/geometries/IcosahedronGeometry",
				"LatheBufferGeometry": "api/zh/geometries/LatheBufferGeometry",
				"LatheGeometry": "api/zh/geometries/LatheGeometry",
				"OctahedronBufferGeometry": "api/zh/geometries/OctahedronBufferGeometry",
				"OctahedronGeometry": "api/zh/geometries/OctahedronGeometry",
				"ParametricBufferGeometry": "api/zh/geometries/ParametricBufferGeometry",
				"ParametricGeometry": "api/zh/geometries/ParametricGeometry",
				"PlaneBufferGeometry": "api/zh/geometries/PlaneBufferGeometry",
				"PlaneGeometry": "api/zh/geometries/PlaneGeometry",
				"PolyhedronBufferGeometry": "api/zh/geometries/PolyhedronBufferGeometry",
				"PolyhedronGeometry": "api/zh/geometries/PolyhedronGeometry",
				"RingBufferGeometry": "api/zh/geometries/RingBufferGeometry",
				"RingGeometry": "api/zh/geometries/RingGeometry",
				"ShapeBufferGeometry": "api/zh/geometries/ShapeBufferGeometry",
				"ShapeGeometry": "api/zh/geometries/ShapeGeometry",
				"SphereBufferGeometry": "api/zh/geometries/SphereBufferGeometry",
				"SphereGeometry": "api/zh/geometries/SphereGeometry",
				"TetrahedronBufferGeometry": "api/zh/geometries/TetrahedronBufferGeometry",
				"TetrahedronGeometry": "api/zh/geometries/TetrahedronGeometry",
				"TextBufferGeometry": "api/zh/geometries/TextBufferGeometry",
				"TextGeometry": "api/zh/geometries/TextGeometry",
				"TorusBufferGeometry": "api/zh/geometries/TorusBufferGeometry",
				"TorusGeometry": "api/zh/geometries/TorusGeometry",
				"TorusKnotBufferGeometry": "api/zh/geometries/TorusKnotBufferGeometry",
				"TorusKnotGeometry": "api/zh/geometries/TorusKnotGeometry",
				"TubeBufferGeometry": "api/zh/geometries/TubeBufferGeometry",
				"TubeGeometry": "api/zh/geometries/TubeGeometry",
				"WireframeGeometry": "api/zh/geometries/WireframeGeometry"
			},

G
gogoend 已提交
640
			"辅助对象": {
M
Mr.doob 已提交
641 642 643 644 645 646 647 648 649 650 651 652
				"ArrowHelper": "api/zh/helpers/ArrowHelper",
				"AxesHelper": "api/zh/helpers/AxesHelper",
				"BoxHelper": "api/zh/helpers/BoxHelper",
				"Box3Helper": "api/zh/helpers/Box3Helper",
				"CameraHelper": "api/zh/helpers/CameraHelper",
				"DirectionalLightHelper": "api/zh/helpers/DirectionalLightHelper",
				"GridHelper": "api/zh/helpers/GridHelper",
				"PolarGridHelper": "api/zh/helpers/PolarGridHelper",
				"HemisphereLightHelper": "api/zh/helpers/HemisphereLightHelper",
				"PlaneHelper": "api/zh/helpers/PlaneHelper",
				"PointLightHelper": "api/zh/helpers/PointLightHelper",
				"SkeletonHelper": "api/zh/helpers/SkeletonHelper",
M
Mugen87 已提交
653
				"SpotLightHelper": "api/zh/helpers/SpotLightHelper"
M
Mr.doob 已提交
654 655
			},

G
gogoend 已提交
656
			"灯光": {
M
Mr.doob 已提交
657 658 659 660 661 662 663 664 665
				"AmbientLight": "api/zh/lights/AmbientLight",
				"DirectionalLight": "api/zh/lights/DirectionalLight",
				"HemisphereLight": "api/zh/lights/HemisphereLight",
				"Light": "api/zh/lights/Light",
				"PointLight": "api/zh/lights/PointLight",
				"RectAreaLight": "api/zh/lights/RectAreaLight",
				"SpotLight": "api/zh/lights/SpotLight"
			},

G
gogoend 已提交
666
			"灯光 / 阴影": {
M
Mr.doob 已提交
667
				"LightShadow": "api/zh/lights/shadows/LightShadow",
668 669
				"PointLightShadow": "api/zh/lights/shadows/PointLightShadow",
				"DirectionalLightShadow": "api/zh/lights/shadows/DirectionalLightShadow",
M
Mr.doob 已提交
670 671 672
				"SpotLightShadow": "api/zh/lights/shadows/SpotLightShadow"
			},

G
gogoend 已提交
673
			"加载器": {
M
Mr.doob 已提交
674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691
				"AnimationLoader": "api/zh/loaders/AnimationLoader",
				"AudioLoader": "api/zh/loaders/AudioLoader",
				"BufferGeometryLoader": "api/zh/loaders/BufferGeometryLoader",
				"Cache": "api/zh/loaders/Cache",
				"CompressedTextureLoader": "api/zh/loaders/CompressedTextureLoader",
				"CubeTextureLoader": "api/zh/loaders/CubeTextureLoader",
				"DataTextureLoader": "api/zh/loaders/DataTextureLoader",
				"FileLoader": "api/zh/loaders/FileLoader",
				"FontLoader": "api/zh/loaders/FontLoader",
				"ImageBitmapLoader": "api/zh/loaders/ImageBitmapLoader",
				"ImageLoader": "api/zh/loaders/ImageLoader",
				"Loader": "api/zh/loaders/Loader",
				"LoaderUtils": "api/zh/loaders/LoaderUtils",
				"MaterialLoader": "api/zh/loaders/MaterialLoader",
				"ObjectLoader": "api/zh/loaders/ObjectLoader",
				"TextureLoader": "api/zh/loaders/TextureLoader"
			},

G
gogoend 已提交
692
			"加载器 / 管理器": {
M
Mr.doob 已提交
693 694 695 696
				"DefaultLoadingManager": "api/zh/loaders/managers/DefaultLoadingManager",
				"LoadingManager": "api/zh/loaders/managers/LoadingManager"
			},

G
gogoend 已提交
697
			"材质": {
M
Mr.doob 已提交
698 699 700 701 702
				"LineBasicMaterial": "api/zh/materials/LineBasicMaterial",
				"LineDashedMaterial": "api/zh/materials/LineDashedMaterial",
				"Material": "api/zh/materials/Material",
				"MeshBasicMaterial": "api/zh/materials/MeshBasicMaterial",
				"MeshDepthMaterial": "api/zh/materials/MeshDepthMaterial",
M
Mugen87 已提交
703
				"MeshDistanceMaterial": "api/zh/materials/MeshDistanceMaterial",
M
Mr.doob 已提交
704
				"MeshLambertMaterial": "api/zh/materials/MeshLambertMaterial",
M
Mugen87 已提交
705
				"MeshMatcapMaterial": "api/zh/materials/MeshMatcapMaterial",
M
Mr.doob 已提交
706 707 708 709 710 711 712 713 714 715 716 717
				"MeshNormalMaterial": "api/zh/materials/MeshNormalMaterial",
				"MeshPhongMaterial": "api/zh/materials/MeshPhongMaterial",
				"MeshPhysicalMaterial": "api/zh/materials/MeshPhysicalMaterial",
				"MeshStandardMaterial": "api/zh/materials/MeshStandardMaterial",
				"MeshToonMaterial": "api/zh/materials/MeshToonMaterial",
				"PointsMaterial": "api/zh/materials/PointsMaterial",
				"RawShaderMaterial": "api/zh/materials/RawShaderMaterial",
				"ShaderMaterial": "api/zh/materials/ShaderMaterial",
				"ShadowMaterial": "api/zh/materials/ShadowMaterial",
				"SpriteMaterial": "api/zh/materials/SpriteMaterial"
			},

G
gogoend 已提交
718
			"数学库": {
M
Mr.doob 已提交
719 720 721 722 723 724 725 726
				"Box2": "api/zh/math/Box2",
				"Box3": "api/zh/math/Box3",
				"Color": "api/zh/math/Color",
				"Cylindrical": "api/zh/math/Cylindrical",
				"Euler": "api/zh/math/Euler",
				"Frustum": "api/zh/math/Frustum",
				"Interpolant": "api/zh/math/Interpolant",
				"Line3": "api/zh/math/Line3",
M
Mugen87 已提交
727
				"MathUtils": "api/zh/math/MathUtils",
M
Mr.doob 已提交
728 729 730 731 732 733 734
				"Matrix3": "api/zh/math/Matrix3",
				"Matrix4": "api/zh/math/Matrix4",
				"Plane": "api/zh/math/Plane",
				"Quaternion": "api/zh/math/Quaternion",
				"Ray": "api/zh/math/Ray",
				"Sphere": "api/zh/math/Sphere",
				"Spherical": "api/zh/math/Spherical",
M
Mugen87 已提交
735
				"SphericalHarmonics": "api/zh/math/SphericalHarmonics",
M
Mr.doob 已提交
736 737 738 739 740 741
				"Triangle": "api/zh/math/Triangle",
				"Vector2": "api/zh/math/Vector2",
				"Vector3": "api/zh/math/Vector3",
				"Vector4": "api/zh/math/Vector4"
			},

G
gogoend 已提交
742
			"数学库 / 插值": {
M
Mr.doob 已提交
743 744 745 746 747 748
				"CubicInterpolant": "api/zh/math/interpolants/CubicInterpolant",
				"DiscreteInterpolant": "api/zh/math/interpolants/DiscreteInterpolant",
				"LinearInterpolant": "api/zh/math/interpolants/LinearInterpolant",
				"QuaternionLinearInterpolant": "api/zh/math/interpolants/QuaternionLinearInterpolant"
			},

G
gogoend 已提交
749
			"物体": {
M
Mr.doob 已提交
750 751
				"Bone": "api/zh/objects/Bone",
				"Group": "api/zh/objects/Group",
M
Mugen87 已提交
752
				"InstancedMesh": "api/zh/objects/InstancedMesh",
M
Mr.doob 已提交
753 754 755 756 757 758 759 760 761 762 763
				"Line": "api/zh/objects/Line",
				"LineLoop": "api/zh/objects/LineLoop",
				"LineSegments": "api/zh/objects/LineSegments",
				"LOD": "api/zh/objects/LOD",
				"Mesh": "api/zh/objects/Mesh",
				"Points": "api/zh/objects/Points",
				"Skeleton": "api/zh/objects/Skeleton",
				"SkinnedMesh": "api/zh/objects/SkinnedMesh",
				"Sprite": "api/zh/objects/Sprite"
			},

G
gogoend 已提交
764
			"渲染器": {
765
				"WebGLMultisampleRenderTarget": "api/zh/renderers/WebGLMultisampleRenderTarget",
M
Mr.doob 已提交
766 767
				"WebGLRenderer": "api/zh/renderers/WebGLRenderer",
				"WebGLRenderTarget": "api/zh/renderers/WebGLRenderTarget",
768
				"WebGLCubeRenderTarget": "api/zh/renderers/WebGLCubeRenderTarget"
M
Mr.doob 已提交
769 770
			},

G
gogoend 已提交
771
			"渲染器 / 着色器": {
M
Mr.doob 已提交
772 773 774 775 776 777
				"ShaderChunk": "api/zh/renderers/shaders/ShaderChunk",
				"ShaderLib": "api/zh/renderers/shaders/ShaderLib",
				"UniformsLib": "api/zh/renderers/shaders/UniformsLib",
				"UniformsUtils": "api/zh/renderers/shaders/UniformsUtils"
			},

M
Mugen87 已提交
778 779 780 781
			"渲染器 / WebXR": {
				"WebXRManager": "api/zh/renderers/webxr/WebXRManager"
			},

G
gogoend 已提交
782
			"场景": {
M
Mr.doob 已提交
783 784 785 786 787
				"Fog": "api/zh/scenes/Fog",
				"FogExp2": "api/zh/scenes/FogExp2",
				"Scene": "api/zh/scenes/Scene"
			},

G
gogoend 已提交
788
			"纹理贴图": {
M
Mr.doob 已提交
789 790 791 792
				"CanvasTexture": "api/zh/textures/CanvasTexture",
				"CompressedTexture": "api/zh/textures/CompressedTexture",
				"CubeTexture": "api/zh/textures/CubeTexture",
				"DataTexture": "api/zh/textures/DataTexture",
793
				"DataTexture3D": "api/zh/textures/DataTexture3D",
M
Mr.doob 已提交
794 795 796 797 798 799 800
				"DepthTexture": "api/zh/textures/DepthTexture",
				"Texture": "api/zh/textures/Texture",
				"VideoTexture": "api/zh/textures/VideoTexture"
			}

		},

G
gogoend 已提交
801
		"示例": {
M
Mr.doob 已提交
802

G
gogoend 已提交
803
			"动画": {
M
Mugen87 已提交
804 805 806
				"CCDIKSolver": "examples/zh/animations/CCDIKSolver",
				"MMDAnimationHelper": "examples/zh/animations/MMDAnimationHelper",
				"MMDPhysics": "examples/zh/animations/MMDPhysics"
M
Mr.doob 已提交
807 808
			},

G
gogoend 已提交
809
			"控制": {
810 811
				"DeviceOrientationControls": "examples/zh/controls/DeviceOrientationControls",
				"DragControls": "examples/zh/controls/DragControls",
M
Mugen87 已提交
812
				"FirstPersonControls": "examples/zh/controls/FirstPersonControls",
M
Mugen87 已提交
813
				"FlyControls": "examples/zh/controls/FlyControls",
M
Mugen87 已提交
814
				"OrbitControls": "examples/zh/controls/OrbitControls",
M
Mugen87 已提交
815
				"PointerLockControls": "examples/zh/controls/PointerLockControls",
M
Mugen87 已提交
816 817
				"TrackballControls": "examples/zh/controls/TrackballControls",
				"TransformControls": "examples/zh/controls/TransformControls"
M
Mr.doob 已提交
818 819
			},

G
gogoend 已提交
820
			"几何体": {
M
Mugen87 已提交
821 822 823
				"ConvexBufferGeometry": "examples/zh/geometries/ConvexBufferGeometry",
				"ConvexGeometry": "examples/zh/geometries/ConvexGeometry",
				"DecalGeometry": "examples/zh/geometries/DecalGeometry"
M
Mr.doob 已提交
824 825
			},

M
Mugen87 已提交
826 827
			"辅助对象": {
				"FaceNormalsHelper": "examples/zh/helpers/FaceNormalsHelper",
828
				"LightProbeHelper": "examples/zh/helpers/LightProbeHelper",
M
Mugen87 已提交
829 830 831 832 833 834
				"PositionalAudioHelper": "examples/zh/helpers/PositionalAudioHelper",
				"RectAreaLightHelper": "examples/zh/helpers/RectAreaLightHelper",
				"VertexNormalsHelper": "examples/zh/helpers/VertexNormalsHelper",
				"VertexTangentsHelper": "examples/zh/helpers/VertexTangentsHelper"
			},

G
gogoend 已提交
835
			"加载器": {
836 837 838
				"BasisTextureLoader": "examples/zh/loaders/BasisTextureLoader",
				"DRACOLoader": "examples/zh/loaders/DRACOLoader",
				"GLTFLoader": "examples/zh/loaders/GLTFLoader",
M
Mugen87 已提交
839 840 841 842 843 844
				"MMDLoader": "examples/zh/loaders/MMDLoader",
				"MTLLoader": "examples/zh/loaders/MTLLoader",
				"OBJLoader": "examples/zh/loaders/OBJLoader",
				"OBJLoader2": "examples/zh/loaders/OBJLoader2",
				"PCDLoader": "examples/zh/loaders/PCDLoader",
				"PDBLoader": "examples/zh/loaders/PDBLoader",
845
				"PRWMLoader": "examples/zh/loaders/PRWMLoader",
M
Mugen87 已提交
846
				"SVGLoader": "examples/zh/loaders/SVGLoader",
847
				"TGALoader": "examples/zh/loaders/TGALoader"
M
Mr.doob 已提交
848 849
			},

G
gogoend 已提交
850
			"物体": {
M
Mugen87 已提交
851
				"Lensflare": "examples/zh/objects/Lensflare",
M
Mr.doob 已提交
852 853
			},

854
			"后期处理": {
M
Mugen87 已提交
855 856 857
				"EffectComposer": "examples/zh/postprocessing/EffectComposer"
			},

G
gogoend 已提交
858
			"导出器": {
M
Mugen87 已提交
859
				"GLTFExporter": "examples/zh/exporters/GLTFExporter",
860
				"PLYExporter": "examples/zh/exporters/PLYExporter",
861 862
				"ColladaExporter": "examples/zh/exporters/ColladaExporter"
			},
M
Mr.doob 已提交
863

864 865 866
			"数学库": {
				"LookupTable": "examples/zh/math/Lut",
				"MeshSurfaceSampler": "examples/zh/math/MeshSurfaceSampler",
M
Mr.doob 已提交
867 868 869
			},

			"QuickHull": {
M
Mugen87 已提交
870 871 872 873 874
				"Face": "examples/zh/math/convexhull/Face",
				"HalfEdge": "examples/zh/math/convexhull/HalfEdge",
				"ConvexHull": "examples/zh/math/convexhull/ConvexHull",
				"VertexNode": "examples/zh/math/convexhull/VertexNode",
				"VertexList": "examples/zh/math/convexhull/VertexList"
M
Mr.doob 已提交
875 876
			},

G
gogoend 已提交
877
			"渲染器": {
M
Mugen87 已提交
878 879 880
				"CSS2DRenderer": "examples/zh/renderers/CSS2DRenderer",
				"CSS3DRenderer": "examples/zh/renderers/CSS3DRenderer",
				"SVGRenderer": "examples/zh/renderers/SVGRenderer"
M
Mr.doob 已提交
881 882
			},

G
gogoend 已提交
883
			"实用工具": {
M
Mugen87 已提交
884
				"BufferGeometryUtils": "examples/zh/utils/BufferGeometryUtils",
885 886
				"SceneUtils": "examples/zh/utils/SceneUtils",
				"SkeletonUtils": "examples/zh/utils/SkeletonUtils"
M
Mr.doob 已提交
887 888 889 890
			}

		},

G
gogoend 已提交
891
		"开发者参考": {
M
Mr.doob 已提交
892

G
gogoend 已提交
893
			"差异化支持": {
M
Mr.doob 已提交
894 895 896
				"Polyfills": "api/zh/Polyfills"
			},

G
gogoend 已提交
897
			"WebGL渲染器": {
M
Mr.doob 已提交
898 899 900 901
				"WebGLProgram": "api/zh/renderers/webgl/WebGLProgram",
				"WebGLShader": "api/zh/renderers/webgl/WebGLShader",
				"WebGLState": "api/zh/renderers/webgl/WebGLState"
			}
J
Jost Schmithals 已提交
902 903 904 905

		}

	}
906

L
Lewy Blue 已提交
907
};