-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·47 lines (39 loc) · 1.87 KB
/
Copy pathindex.html
File metadata and controls
executable file
·47 lines (39 loc) · 1.87 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-S1KD9VW3K3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-S1KD9VW3K3');
</script>
<!-- Google Adsense-->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3561013920981527"
crossorigin="anonymous"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Zero Gravity Sumo</title>
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<!-- Three.js and its loaders -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/three@0.128.0/examples/js/loaders/GLTFLoader.js"></script>
<!-- Game scripts -->
<script src="scripts/levelManager.js"></script>
<script src="scripts/effects.js"></script>
<script src="scripts/menu.js"></script>
<script src="scripts/controls.js"></script>
<script src="scripts/physics.js"></script>
<script src="scripts/assets.js"></script>
<script src="scripts/bots.js"></script>
<script src="scripts/game.js"></script>
<script src="scripts/scene.js"></script>
<script src="scripts/main.js"></script>
<a target="_blank" href="https://jam.pieter.com"
style="font-family: 'system-ui', sans-serif; position: fixed; bottom: -1px; right: -1px; padding: 7px; font-size: 14px; font-weight: bold; background: #fff; color: #000; text-decoration: none; z-index: 10; border-top-left-radius: 12px; z-index: 10000; border: 1px solid #fff;">🕹️
Vibe Jam 2025</a>
</body>
</html>