-
Notifications
You must be signed in to change notification settings - Fork 0
/
animated_buildings.html
29 lines (26 loc) · 977 Bytes
/
animated_buildings.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Animated Buildings</title>
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script src="lib/three.min.js"></script>
<script src="lib/MTLLoader.js"></script>
<script src="lib/OBJLoader.js"></script>
<script src="lib/OrbitControls.js"></script>
<script src="lib/threex.domevents.js"></script>
<script src="lib/chroma.min.js"></script>
<script src="lib/dat.gui.min.js"></script>
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<canvas id="matrix-texture" width="2048" height="2048" style="display: none"></canvas>
<script src="matrixCanvas.js?v=0.1"></script>
<script src="InfoPanel.js?v=0.1"></script>
<script src="ui.js?v=0.1"></script>
<script src="animatedBuildings.js?v=0.1"></script>
</body>
</html>