forked from afreakk/ChromeAudioVisualizerExtension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscriptsToInject.js
65 lines (61 loc) · 1.94 KB
/
scriptsToInject.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
AV.scripts = {};
//commented out webgl scenes,
//seems to be a bug in chrome extension/content script regarding webgl
AV.scripts.scenes = [
'js/scenes/butter/bundle.js',
"js/scenes/shaders/shaders.js",
"js/scenes/sceneHelpers.js",
"js/scenes/colorMixScene.js",
"js/scenes/particleCircle.js",
"js/scenes/dotsAndLines.js",
"js/scenes/worldScene.js",
"js/scenes/circleScene.js",
"js/scenes/wormScene.js",
"js/scenes/wartScene.js",
"js/scenes/genericScene.js",
"js/scenes/roundSpectrum.js",
"js/scenes/hexagonScene.js",
"js/scenes/seventiesScene.js",
'js/scenes/butter.js',
'js/scenes/butterVanilla.js',
"js/scenes/madnessScene.js",
"js/scenes/paintingScene.js",
"js/scenes/dancingCubes.js",
"js/scenes/somewebglscene.js",
"js/scenes/xxx.js",
//'js/scenes/WebGLFunWrapper/ExtLibs/gl-matrix-min.js',
'js/scenes/WebGLFunWrapper/ExtLibs/perlinsimplexnoise.js',
'js/scenes/WebGLFunWrapper/3DObjects/shape.js',
'js/scenes/WebGLFunWrapper/3DObjects/terrain.js',
'js/scenes/WebGLFunWrapper/ShaderObjects/terrainshader.js',
'js/scenes/WebGLFunWrapper/ShaderObjects/generalshader.js',
'js/scenes/WebGLFunWrapper/Core/shader.js',
'js/scenes/WebGLFunWrapper/Core/keyhandler.js',
'js/scenes/WebGLFunWrapper/Core/managers.js',
'js/scenes/WebGLFunWrapper/Scenes/terrainscene.js',
'js/scenes/WebGLFunWrapper/main.js',
'js/scenes/terrainScene.js'
];
AV.scripts.libs = [
"lib/dat.gui.js",
"lib/stats.min.js",
"lib/gl-matrix.js"
// "lib/bootstrap.css",
// "lib/bootstrap-theme.css",
];
AV.scripts.appFramework = [
"js/tools.js",
"js/webglHelpers.js",
"js/storageLayer.js",
"js/sceneManager.js",
"js/sceneSelector.js",
"js/customSceneHandler.js",
"js/system.js",
"js/gui.js",
];
AV.scriptsToInject = ["settings/setting.js"]
.concat(AV.scripts.libs)
.concat(AV.scripts.appFramework)
.concat(AV.scripts.scenes)
.concat(["js/init.js"]);
AV.stylesToInject = ["css/main.css"];