-
Notifications
You must be signed in to change notification settings - Fork 302
/
app_model_embedded.html
47 lines (42 loc) · 1.33 KB
/
app_model_embedded.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
<!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">
<script src="../dist/claygl.js"></script>
<title>Model loading</title>
</head>
<body>
<style>
html, body, #main {
height: 100%;
margin: 0;
}
</style>
<div id="main"></div>
<script>
var app = clay.application.create('#main', {
init: function (app) {
// Create camera
this._camera = app.createCamera([0, 2, 4], [0, 0, 0]);
// Create light
app.createDirectionalLight([-1, -1, -1]);
// Use orbit control
this._control = new clay.plugin.OrbitControl({
target: this._camera,
domElement: app.container
});
// Load boombox model. return a load promise to make sure the look will be start after model loaded.
return app.loadModel('./assets/models/Duck_Embedded.gltf');
},
loop: function (app) {
this._control.update(app.frameTime);
}
});
window.onresize = function () {
app.resize()
};
</script>
</body>
</html>