dylanebert commited on
Commit
0394aad
·
0 Parent(s):

Initial deployment of grass cutting game

Browse files
README.md ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: Grass Cutting Game
3
+ emoji: 🌿
4
+ colorFrom: green
5
+ colorTo: yellow
6
+ sdk: static
7
+ pinned: false
8
+ license: mit
9
+ short_description: Incremental grass cutting game
10
+ ---
11
+
12
+ # Grass Cutting Game
13
+
14
+ Built with [VibeGame](https://huggingface.co/spaces/dylanebert/VibeGame)
assets/index-D2VBz5oZ.js ADDED
The diff for this file is too large to render. See raw diff
 
assets/index-D2VBz5oZ.js.map ADDED
The diff for this file is too large to render. See raw diff
 
assets/main-D-7ROV92.js ADDED
The diff for this file is too large to render. See raw diff
 
assets/main-D-7ROV92.js.map ADDED
The diff for this file is too large to render. See raw diff
 
index.html ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>VibeGame Game</title>
7
+ <style>
8
+ html, body {
9
+ margin: 0;
10
+ padding: 0;
11
+ overflow: hidden;
12
+ background: #0a0f1b;
13
+ font-family: Arial, sans-serif;
14
+ width: 100%;
15
+ height: 100%;
16
+ }
17
+ #game-canvas {
18
+ width: 100%;
19
+ height: 100%;
20
+ display: block;
21
+ }
22
+ </style>
23
+ <script type="module" crossorigin src="./assets/index-D2VBz5oZ.js"></script>
24
+ </head>
25
+
26
+ <body>
27
+ <world id="game-world" canvas="#game-canvas" sky="#1a2332">
28
+ <player pos="0 1 5"></player>
29
+ <camera target-distance="8" target-pitch="0.8" tonemapping></camera>
30
+ <ambient-light intensity="1.5"></ambient-light>
31
+ <directional-light intensity="3.0"></directional-light>
32
+ </world>
33
+
34
+ <canvas id="game-canvas" tabindex="0"></canvas>
35
+
36
+ </body>
37
+ </html>