-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
34 lines (30 loc) · 930 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>GI Core Framework</title>
<style>
html, body, head, canvas {
margin: 0;
padding: 0;
overflow: hidden;
}
</style>
</head>
<body>
<canvas id="canvas"></canvas>
<!-- core -->
<script src="deps/picogl.js" charset="utf-8"></script>
<script src="deps/gl-matrix.js" charset="utf-8"></script>
<!-- asset loading -->
<script src="deps/OBJLoader.js" charset="utf-8"></script>
<script src="deps/MTLLoader.js" charset="utf-8"></script>
<!-- stats & gui -->
<script src="deps/stats.min.js" charset="utf-8"></script>
<script src="deps/dat.gui.min.js" charset="utf-8"></script>
<script src="src/Camera.js" charset="utf-8"></script>
<script src="src/ShaderLoader.js" charset="utf-8"></script>
<script src="src/DirectionalLight.js" charset="utf-8"></script>
<script src="src/main.js" charset="utf-8"></script>
</body>
</html>