- Phaser 3.90 Matter, autoUpdate:false — deterministic stepSim(dt), harness-driven. - Render contract: raw Matter body = truth, flat black silhouette follows. - Rng (mulberry32) ported from toastsim; dev harness on window.__s. - Exit-bar measured: box drops y=80 -> settles 68 frames -> rests y=608.05, gap -0.05px flush on floor, landed:true. Verified in-browser + screenshot. - scripts/gen-assets.sh (2D-only flux via MODELBEAST) firing in background. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
18 lines
560 B
HTML
18 lines
560 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>サンドニエット SANDONIETTE</title>
|
|
<style>
|
|
html, body { margin: 0; height: 100%; background: #1a1410; overflow: hidden; }
|
|
#app { width: 100vw; height: 100vh; display: grid; place-items: center; }
|
|
canvas { max-width: 100%; max-height: 100%; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|