-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
62 lines (45 loc) · 1.84 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Project Styles -->
<link rel="stylesheet" type="text/css" href="src/Halo3LoadingScreen.css">
<!-- Page Metadata -->
<title>Halo 3 Loading Screen</title>
<meta property="og:title" content="Halo 3 Loading Screen" />
<meta property="og:url" content="https://xephorium.github.io/Halo3LoadingScreen/" />
<meta property="og:image" content="https://raw.githubusercontent.com/Xephorium/Halo3LoadingScreen/master/res/Thumbnail%20Final.png" />
</head>
<body onload="main()">
<!-- Loading Content -->
<div id="loading">
<img id="halo_3_logo" src="res/Halo 3 Logo.png" alt="Halo 3 Logo" >
<br><br>Loading...
</div>
<!-- Canvas -->
<canvas id="canvas"></canvas>
<!-- UMSL Provided Library Scripts -->
<script src="lib/umsl/three.min.js"></script>
<script src="lib/umsl/dat.gui.min.js"></script>
<script src="lib/umsl/webgl-utils.js"></script>
<script src="lib/umsl/webgl-debug.js"></script>
<script src="lib/umsl/cuon-utils.js"></script>
<script src="lib/umsl/cuon-matrix.js"></script>
<!-- Decimal.js Script -->
<script src="lib/decimal.js"></script>
<!-- Better Random Script -->
<script src="lib/mersenne-twister.js"></script>
<!-- Rotator Class -->
<script src="src/math/Rotator.js"></script>
<!-- Interpolator Class -->
<script src="src/math/Interpolator.js"></script>
<!-- Particle Classes -->
<script src="src/model/LoadingParticle.js"></script>
<script src="src/model/LoadingParticleFactory.js"></script>
<!-- Image Loader Class -->
<script src="src/image/ImageLoader.js"></script>
<!-- Background Grid Class -->
<script src="src/model/BackgroundGrid.js"></script>
<!-- Root Project Script -->
<script src="src/Halo3LoadingScreen.js"></script>
</body>
</html>