game engine test

This commit is contained in:
biglyderv 2024-09-13 03:30:57 -04:00
parent 105aac8fd0
commit 5ab4e05afe
No known key found for this signature in database
GPG key ID: 33AC87E9ACE66954
4 changed files with 167 additions and 67 deletions

View file

@ -1,16 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://dervland.net/index.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<section id='main'>
<h1>Fractal Hell</h1>
<canvas style='width: 800px; height: 800px; image-rendering: pixelated' id='canvas'>
</section>
<script src='js/perlin.js'></script>
<script src='js/index.js'></script>
</body>
</html>
<head>
<link rel="stylesheet" href="https://dervland.net/index.css">
<link rel='stylesheet' href='game.css'>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<section id='main'>
<h1>Fractal Hell</h1>
<canvas id='canvas'></canvas>
<div class='message' style='display: none;'><span>You died in the Void...</span></div>
</section>
<script src='js/perlin.js'></script>
<script src='js/index.js'></script>
<script src='js/motion.js'></script>
</body>
</html>