game engine test
This commit is contained in:
parent
105aac8fd0
commit
5ab4e05afe
4 changed files with 167 additions and 67 deletions
31
index.html
31
index.html
|
@ -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>
|
Loading…
Add table
Add a link
Reference in a new issue