-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (42 loc) · 1.79 KB
/
index.html
File metadata and controls
45 lines (42 loc) · 1.79 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Altered Levels | Launch Into The Unknown</title>
<meta name="description" content="We are an Indie Record Label with no labels attached" />
<meta name="theme-color" content="#000000" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="ALTERED LEVELS" />
<meta name="application-name" content="ALTERED LEVELS" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon.png" />
<link rel="stylesheet" href="css/style.css" />
<link rel="preload" href="js/three.min.js" as="script" />
<link rel="preload" href="js/cannon.js" as="script" />
<link rel="preload" href="js/GLTFLoader.js" as="script" />
<link rel="preload" href="js/modifier.js" as="script" />
</head>
<body>
<main id="info"></main>
<!-- partial:index.partial.html -->
<script src="js/three.min.js" defer></script>
<script src="js/LegacyJSONLoader.js" defer></script>
<script src="js/GLTFLoader.js" defer></script>
<script src="js/dat.gui.min.js" defer></script>
<!-- processing -->
<script src="js/EffectComposer.js" defer></script>
<script src="js/ShaderPass.js" defer></script>
<script src="js/RenderPass.js" defer></script>
<script src="js/MaskPass.js" defer></script>
<!-- shaders -->
<script src="js/CopyShader.js" defer></script>
<script src="js/HorizontalTiltShiftShader.js" defer></script>
<!-- https://github.com/a-jie/threejs-geometry-modifiers -->
<script src="js/modifier.js" defer></script>
<!-- cannon -->
<script src="js/cannon.js" defer></script>
<!-- partial -->
<script src="js/script.js" defer></script>
</body>
</html>