This repository has been archived on 2026-05-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
instructions-clear/public/index.html
T
thayol 2957903cb1 Buff Queen AKA "Ez egy fa?"
Because the first placeholder player model
resembled a queen that's been to the gym a
bit too much. Also, before she got her head
and hands, she looked like a tree, legit.
2024-12-21 23:46:32 +09:00

47 lines
969 B
HTML

<html>
<head>
<meta charset="UTF-8">
<meta name="author" content="Thayol">
<script type="importmap">
{
"imports": {
"three": "/three/build/three.module.js",
"three/addons/": "/three/examples/jsm/"
}
}
</script>
<style>
* {
box-sizing: border-box;
}
html {
font-family: sans-serif;
}
html, body {
margin: 0;
padding: 0;
}
.debug-panel {
position: fixed;
inset: 0 0 auto auto;
border-bottom-left-radius: 10px;
padding: 10px 10px 20px 20px;
background-color: white;
border: 5px solid gray;
border-top: none;
border-right: none;
}
</style>
</head>
<body>
<div class="debug-panel">
<p>Connection: <span id="connection"></span></p>
<pre id="state"></pre>
</div>
<script type="module" src="main.js"></script>
</body>
</html>