claygl/example/app_memory.html
2018-02-12 01:51:37 +08:00

44 lines
1.2 KiB
HTML

<!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>Memory test</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, 5], [0, 0, 0]);
// Create light
app.createDirectionalLight([-1, -1, -1]);
},
loop: function (app) {
app.scene.remove(this._sphere);
var sphere = new clay.geometry.Sphere();
var mesh = app.createMesh(sphere, {
color: [Math.random(), Math.random(), Math.random()]
})
mesh.position.set(Math.random(), Math.random(), Math.random());
this._sphere = mesh;
}
});
window.onresize = function () {
app.resize()
};
</script>
</body>
</html>