mirror of
https://github.com/visgl/luma.gl.git
synced 2026-01-25 14:08:58 +00:00
13 lines
369 B
HTML
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>
|