Files
another-boids-in-rust/www/index.html
Robert Garrett e16c0e2e32 Add and use a custom canvas element on the page
Tell bevy to find the canvas with ID "#boids-canvas" instead of creating
it's own.
2025-10-28 16:12:09 -05:00

18 lines
404 B
HTML

<!doctype html>
<html lang="en">
<body style="margin: 0px;">
<canvas id="boids-canvas" width="1280" height="720"></canvas>
<script type="module">
import init from './boids.js'
init().catch((error) => {
if (!error.message.startsWith("Using exceptions for control flow, don't mind me. This isn't actually an error!")) {
throw error;
}
});
</script>
</body>
</html>