-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (22 loc) · 916 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=800, initial-scale=0.5">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Raycasting</title>
<link rel="stylesheet" href="./index.css">
<!-- <link rel="icon" href="./favicon.ico" type="image/x-icon"> -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/pixi.js/6.1.3/browser/pixi.js"
integrity="sha512-8xvARw57q2JyibUPprcXg7j2wFKYFi4AQPSau9KjL4gbExjuNz61hp32AzVoKYGvpnP2V0KTPHzpabl7KBf1MQ=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
</head>
<body>
<main>
<div style="width: fit-content; margin: 0 auto;">
<canvas id="canvas" width="800" height="800" style="cursor: none; touch-action: double-tap-zoom;"></canvas>
</div>
</main>
<script src=" index.js" type="module"></script>
</body>
</html>