-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
36 lines (32 loc) · 1008 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
35
36
<!DOCTYPE html>
<html>
<head>
<title>three instanced geom</title>
<style type="text/css">
body, html{
margin: 0px;
}
</style>
</head>
<body onload="init();">
<script type="text/javascript" src="./js/vendors/three.js"></script>
<script type="text/javascript" src="./js/vendors/GLTFLoader.js"></script>
<script type="text/javascript" src="./js/vendors/DRACOLoader.js"></script>
<script type="text/javascript" src="./js/vendors/OrbitControls.js"></script>
<script type="text/javascript" src="./js/application.js"></script>
<script type="text/javascript" src="./glsl/chunks.js"></script>
<script type="text/javascript" src="./glsl/shader_chunck.js"></script>
<script type="text/javascript" src="./js/extended_material.js"></script>
<script type="text/javascript">
const application = Application({
modelsURLS : [
'./models/max_walk_low.glb',
'./models/amelie_walk_low.glb'
]
})
const init = async _ => {
await application.init()
}
</script>
</body>
</html>