mirror of
https://github.com/visgl/luma.gl.git
synced 2026-01-25 14:08:58 +00:00
25 lines
546 B
HTML
25 lines
546 B
HTML
<html>
|
|
|
|
<head>
|
|
<title>Shadowmap example</title>
|
|
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
|
|
|
|
<style>
|
|
body {
|
|
margin: 0px;
|
|
}
|
|
canvas {
|
|
width: 100%;
|
|
height: 100%;
|
|
background-size: cover;
|
|
}
|
|
</style>
|
|
|
|
<body>
|
|
<canvas id="lumagl-canvas"></canvas>
|
|
<script type="text/javascript" src="bundle.js"></script>
|
|
<script>window.animationLoop.start({canvas: 'lumagl-canvas'}); // eslint-disable-line</script>
|
|
</body>
|
|
</head>
|
|
</html>
|