2023-08-18 17:31:55 -04:00

13 lines
341 B
HTML

<!doctype html>
<script type="module">
import {luma} from '@luma.gl/core';
import {WebGLDevice} from '@luma.gl/webgl';
luma.registerDevices([WebGLDevice]);
import AnimationLoopTemplate from './app.ts';
import {makeAnimationLoop} from '@luma.gl/engine';
makeAnimationLoop(AnimationLoopTemplate).start();
</script>
<body>
</body>