-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
24 lines (22 loc) · 919 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=0">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="icon" type="image/png" href="favicon/favicon.ico">
<title>CubeScape</title>
</head>
<body>
<canvas class="threejs-canvas"></canvas>
<canvas class="pixi-canvas"></canvas>
<div id="container"></div>
<div class="loading-percent"></div>
<div class="credits">Made by <u><a href="https://www.andriibabintsev.com/" target="_blank"
style="color: #000000; text-decoration: none;">Andrii Babintsev</a></u> | <u><a
href="https://github.com/Snokke/cubescape" target="_blank"
style="color: #000000; text-decoration: none;">Source code</a></u></div>
<script type="module" src="./src/main.ts"></script>
</body>
</html>