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

13 lines
369 B
HTML

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