2957903cb1
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.
47 lines
969 B
HTML
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>
|