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

3 4
	"Manual": {
		"Introduction": [
5
			[ "Creating a scene", "manual/introduction/Creating-a-scene" ]
6 7 8
		]
	},

9
	"Reference": {
10
		"Cameras": [
11 12 13
			[ "Camera", "api/cameras/Camera" ],
			[ "OrthographicCamera", "api/cameras/OrthographicCamera" ],
			[ "PerspectiveCamera", "api/cameras/PerspectiveCamera" ]
14 15 16
		],

		"Core": [
17 18
			[ "Clock", "api/core/Clock" ],
			[ "Color", "api/core/Color" ],
19
			[ "EventDispatcher", "api/core/EventDispatcher" ],
20 21 22 23 24 25 26 27 28 29
			[ "Face3", "api/core/Face3" ],
			[ "Face4", "api/core/Face4" ],
			[ "Frustum", "api/core/Frustum" ],
			[ "Geometry", "api/core/Geometry" ],
			[ "Math", "api/core/Math" ],
			[ "Matrix3", "api/core/Matrix3" ],
			[ "Matrix4", "api/core/Matrix4" ],
			[ "Object3D", "api/core/Object3D" ],
			[ "Projector", "api/core/Projector" ],
			[ "Quaternion", "api/core/Quaternion" ],
30
			[ "Raycaster", "api/core/Raycaster" ],
31 32 33 34 35 36
			[ "Rectangle", "api/core/Rectangle" ],
			[ "Spline", "api/core/Spline" ],
			[ "UV", "api/core/UV" ],
			[ "Vector2", "api/core/Vector2" ],
			[ "Vector3", "api/core/Vector3" ],
			[ "Vector4", "api/core/Vector4" ]
37 38 39
		],

		"Lights": [
40 41 42 43 44
			[ "Light", "api/lights/Light" ],
			[ "AmbientLight", "api/lights/AmbientLight" ],
			[ "DirectionalLight", "api/lights/DirectionalLight" ],
			[ "PointLight", "api/lights/PointLight" ],
			[ "SpotLight", "api/lights/SpotLight" ]
45 46 47 48
		],


		"Loaders": [
49 50 51 52 53 54 55 56
			[ "Loader", "api/loaders/Loader" ],
			[ "BinaryLoader", "api/loaders/BinaryLoader" ],
			[ "GeometryLoader", "api/loaders/GeometryLoader" ],
			[ "ImageLoader", "api/loaders/ImageLoader" ],
			[ "JSONLoader", "api/loaders/JSONLoader" ],
			[ "LoadingMonitor", "api/loaders/LoadingMonitor" ],
			[ "SceneLoader", "api/loaders/SceneLoader" ],
			[ "TextureLoader", "api/loaders/TextureLoader" ],
57 58 59
		],

		"Materials": [
60 61 62 63 64 65 66 67 68 69 70 71
			[ "Material", "api/materials/Material" ],
			[ "LineBasicMaterial", "api/materials/LineBasicMaterial" ],
			[ "MeshBasicMaterial", "api/materials/MeshBasicMaterial" ],
			[ "MeshDepthMaterial", "api/materials/MeshDepthMaterial" ],
			[ "MeshFaceMaterial", "api/materials/MeshFaceMaterial" ],
			[ "MeshLambertMaterial", "api/materials/MeshLambertMaterial" ],
			[ "MeshNormalMaterial", "api/materials/MeshNormalMaterial" ],
			[ "MeshPhongMaterial", "api/materials/MeshPhongMaterial" ],
			[ "ParticleBasicMaterial", "api/materials/ParticleBasicMaterial" ],
			[ "ParticleCanvasMaterial", "api/materials/ParticleCanvasMaterial" ],
			[ "ParticleDOMMaterial", "api/materials/ParticleDOMMaterial" ],
			[ "ShaderMaterial", "api/materials/ShaderMaterial" ]
72 73 74 75

		],

		"Objects": [
76 77 78 79 80 81 82 83 84 85
			[ "Bone", "api/objects/Bone" ],
			[ "Line", "api/objects/Line" ],
			[ "LOD", "api/objects/LOD" ],
			[ "Mesh", "api/objects/Mesh" ],
			[ "MorphAnimMesh", "api/objects/MorphAnimMesh" ],
			[ "Particle", "api/objects/Particle" ],
			[ "ParticleSystem", "api/objects/ParticleSystem" ],
			[ "Ribbon", "api/objects/Ribbon" ],
			[ "SkinnedMesh", "api/objects/SkinnedMesh" ],
			[ "Sprite", "api/objects/Sprite" ]
86 87 88 89

		],

		"Renderers": [
90 91 92 93 94 95 96
			[ "CanvasRenderer", "api/renderers/CanvasRenderer" ],
			[ "DOMRenderer", "api/renderers/DOMRenderer" ],
			[ "SVGRenderer", "api/renderers/SVGRenderer" ],
			[ "WebGLRenderer", "api/renderers/WebGLRenderer" ],
			[ "WebGLRenderTarget", "api/renderers/WebGLRenderTarget" ],
			[ "WebGLRenderTargetCube", "api/renderers/WebGLRenderTargetCube" ],
			[ "WebGLShaders", "api/renderers/WebGLShaders" ]
97 98 99
		],

		"Renderers / Renderables": [
100 101 102 103 104 105
			[ "RenderableFace3", "api/renderers/renderables/RenderableFace3" ],
			[ "RenderableFace4", "api/renderers/renderables/RenderableFace4" ],
			[ "RenderableLine", "api/renderers/renderables/RenderableLine" ],
			[ "RenderableObject", "api/renderers/renderables/RenderableObject" ],
			[ "RenderableParticle", "api/renderers/renderables/RenderableParticle" ],
			[ "RenderableVertex", "api/renderers/renderables/RenderableVertex" ]
106 107 108
		],

		"Scenes": [
109 110 111
			[ "Fog", "api/scenes/Fog" ],
			[ "FogExp2", "api/scenes/FogExp2" ],
			[ "Scene", "api/scenes/Scene" ]
112 113 114
		],

		"Textures": [
115 116
			[ "DataTexture", "api/textures/DataTexture" ],
			[ "Texture", "api/textures/Texture" ]
117 118 119
		],

		"Extras": [
120 121 122 123 124
			[ "ColorUtils", "api/extras/ColorUtils" ],
			[ "GeometryUtils", "api/extras/GeometryUtils" ],
			[ "ImageUtils", "api/extras/ImageUtils" ],
			[ "SceneUtils", "api/extras/SceneUtils" ],
			[ "ShaderUtils", "api/extras/ShaderUtils" ]
125 126 127
		],

		"Extras / Animation": [
128 129 130 131
			[ "Animation", "api/extras/animation/Animation" ],
			[ "AnimationHandler", "api/extras/animation/AnimationHandler" ],
			[ "AnimationMorphTarget", "api/extras/animation/AnimationMorphTarget" ],
			[ "KeyFrameAnimation", "api/extras/animation/KeyFrameAnimation" ]
132 133 134
		],

		"Extras / Cameras": [
135 136
			[ "CombinedCamera", "api/extras/cameras/CombinedCamera" ],
			[ "CubeCamera", "api/extras/cameras/CubeCamera" ]
137 138 139
		],

		"Extras / Core": [
140 141 142 143 144
			[ "BufferGeometry", "api/extras/core/BufferGeometry" ],
			[ "Curve", "api/extras/core/Curve" ],
			[ "CurvePath", "api/extras/core/CurvePath" ],
			[ "Gyroscope", "api/extras/core/Gyroscope" ],
			[ "Path", "api/extras/core/Path" ],
Z
zz85 已提交
145
			[ "Shape", "api/extras/core/Shape" ]
146 147 148
		],

		"Extras / Geometries": [
149 150 151 152 153 154 155 156 157 158 159 160 161
			[ "CubeGeometry", "api/extras/geometries/CubeGeometry" ],
			[ "CylinderGeometry", "api/extras/geometries/CylinderGeometry" ],
			[ "ExtrudeGeometry", "api/extras/geometries/ExtrudeGeometry" ],
			[ "IcosahedronGeometry", "api/extras/geometries/IcosahedronGeometry" ],
			[ "LatheGeometry", "api/extras/geometries/LatheGeometry" ],
			[ "OctahedronGeometry", "api/extras/geometries/OctahedronGeometry" ],
			[ "PlaneGeometry", "api/extras/geometries/PlaneGeometry" ],
			[ "PolyhedronGeometry", "api/extras/geometries/PolyhedronGeometry" ],
			[ "SphereGeometry", "api/extras/geometries/SphereGeometry" ],
			[ "TetrahedronGeometry", "api/extras/geometries/TetrahedronGeometry" ],
			[ "TextGeometry", "api/extras/geometries/TextGeometry" ],
			[ "TorusGeometry", "api/extras/geometries/TorusGeometry" ],
			[ "TorusKnotGeometry", "api/extras/geometries/TorusKnotGeometry" ]
162 163 164
		],

		"Extras / Helpers": [
165 166
			[ "AxisHelper", "api/extras/helpers/AxisHelper" ],
			[ "CameraHelper", "api/extras/helpers/CameraHelper" ]
167 168 169
		],

		"Extras / Modifiers": [
170
			[ "SubdivisionModifier", "api/extras/modifiers/SubdivisionModifier" ]
171 172 173
		],

		"Extras / Objects": [
174
			[ "LensFlare", "api/extras/objects/LensFlare" ]
175 176 177
		],

		"Extras / Renderers / Effects": [
178 179 180 181
			[ "AnaglyphEffect", "api/extras/renderers/effects/AnaglyphEffect" ],
			[ "CrosseyedEffect", "api/extras/renderers/effects/CrosseyedEffect" ],
			[ "ParallaxBarrierEffect", "api/extras/renderers/effects/ParallaxBarrierEffect" ],
			[ "StereoEffect", "api/extras/renderers/effects/StereoEffect" ]
182 183 184
		],

		"Extras / Renderers / Plugins": [
185 186 187
			[ "LensFlarePlugin", "api/extras/renderers/plugins/LensFlarePlugin" ],
			[ "ShadowMapPlugin", "api/extras/renderers/plugins/ShadowMapPlugin" ],
			[ "SpritePlugin", "api/extras/renderers/plugins/SpritePlugin" ]
188 189 190
		],

		"Extras / Shaders": [
191 192
			[ "ShaderFlares", "api/extras/shaders/ShaderFlares" ],
			[ "ShaderSprite", "api/extras/shaders/ShaderSprite" ]
193 194
		]
	}
195 196 197 198 199

};

var pages = {};

200 201 202 203 204 205 206 207 208
for ( var section in list ) {

	pages[ section ] = {};

	for ( var category in list[ section ] ) {

		pages[ section ][ category ] = {};

		for ( var i = 0; i < list[ section ][ category ].length; i ++ ) {
209

210 211
			var page = list[ section ][ category ][ i ];
			pages[ section ][ category ][ page[ 0 ] ] = page[ 1 ];
212

213
		}
214 215 216

	}

217
}