-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (33 loc) · 988 Bytes
/
index.html
File metadata and controls
37 lines (33 loc) · 988 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ColorBubble</title>
<style>
canvas {
background-color: black;
}
</style>
</head>
<body id="wasm-example">
<script type="module">
import init from "./pkg/colorbubble.js";
init().then(() => {
console.log("WASM Loaded");
});
</script>
<div>
A Platformer with invisible platforms, use bubbles to splatter color everywhere and reveal them!<br>
<br>
* WASD / Arrow Keys / Space to move<br>
* Shift / E / Q to create bubbles<br>
<br>
Created by <a href="https://github.com/Firestar99">Firestar99</a> and <a href="https://github.com/Friz64">Friz64</a>
during the <a href="https://globalgamejam.org/games/2025/coloorbubble-2-0">Global Game Jam 2025</a>, see
<a href="https://github.com/Firestar99/colorbubble">Repository</a> for more details.
<br>
</div>
</body>
</html>