dylanebert HF Staff commited on
Commit
63d06f7
·
1 Parent(s): fd22933

mobile support attempt

Browse files
Files changed (4) hide show
  1. Build/Build.data +2 -2
  2. Build/Build.loader.js +1 -1
  3. Build/Build.wasm +2 -2
  4. index.html +21 -19
Build/Build.data CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:404bcb3340e26d3a1c20e423a62f64000ad8985e8a5a1cd6f084804c5366148b
3
- size 15191467
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:520e83e7dd0c968d5cc7115c6474817b81b685e11a097c7678c6cd97f85b39b6
3
+ size 15191530
Build/Build.loader.js CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:97e57dc75c7230a1641c9aebe068a623819b5166a4ff0c3206f3359da25d34b7
3
  size 26416
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ab108172f74642ce1a778acd12f813ee501eac92a63ffce957afb49c10d1e6c3
3
  size 26416
Build/Build.wasm CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b96f139eefc9f41b4d4c2eb4aca9b1cdea5d91b8843158178b46ff92f39626f4
3
- size 33435441
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7b48fe615a7d60684098cdbaa5d4cbae44faa87d7a4f6a063d8237cc014ec20a
3
+ size 33438033
index.html CHANGED
@@ -4,7 +4,7 @@
4
  <meta charset="utf-8" />
5
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
7
- <title>Vibe Coding in the Dark</title>
8
  <link rel="shortcut icon" href="TemplateData/favicon.ico" />
9
  <link rel="stylesheet" href="TemplateData/style.css" />
10
  <link rel="preconnect" href="https://fonts.googleapis.com" />
@@ -32,30 +32,26 @@
32
  position: absolute;
33
  top: 50%;
34
  left: 50%;
35
- transform: translate(-50%, -50%);
36
  text-align: center;
37
  max-width: 80%;
38
  line-height: 1.5;
39
  margin-bottom: 10px;
40
  }
41
- #loading-subtext {
42
- font-family: "Bebas Neue", Arial, sans-serif;
43
- font-size: 24px;
44
- position: absolute;
45
- top: 50%;
46
- left: 50%;
47
- transform: translate(-50%, 40px);
48
- text-align: center;
49
- max-width: 80%;
50
- line-height: 1.5;
51
- color: white;
52
- }
53
  #loading-cover {
54
  transition: opacity 1.5s ease-in-out;
55
  }
56
  .fade-out {
57
  opacity: 0;
58
  }
 
 
 
 
 
 
 
 
59
 
60
  /* Start Game Button Styles */
61
  #start-game-container {
@@ -76,7 +72,7 @@
76
  font-size: 32px;
77
  padding: 15px 40px;
78
  color: white;
79
- background-color: #333;
80
  border: 2px solid white;
81
  border-radius: 8px;
82
  cursor: pointer;
@@ -84,7 +80,7 @@
84
  }
85
 
86
  #start-game-button:hover {
87
- background-color: #555;
88
  transform: scale(1.05);
89
  }
90
  </style>
@@ -94,8 +90,14 @@
94
  <canvas id="unity-canvas"></canvas>
95
  </div>
96
  <div id="loading-cover" style="display: none; background-color: #000000">
97
- <div id="loading-text">Vibe Coding in the Dark</div>
98
- <div id="loading-subtext">by Dylan Ebert (IndividualKex)</div>
 
 
 
 
 
 
99
  </div>
100
  <div id="start-game-container">
101
  <button id="start-game-button">START GAME</button>
@@ -137,7 +139,7 @@
137
  codeUrl: buildUrl + "/Build.wasm",
138
  streamingAssetsUrl: "StreamingAssets",
139
  companyName: "IndividualKex",
140
- productName: "Vibe Coding in the Dark",
141
  productVersion: "0.1.0",
142
  };
143
 
 
4
  <meta charset="utf-8" />
5
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
7
+ <title>Echoes in the Dark</title>
8
  <link rel="shortcut icon" href="TemplateData/favicon.ico" />
9
  <link rel="stylesheet" href="TemplateData/style.css" />
10
  <link rel="preconnect" href="https://fonts.googleapis.com" />
 
32
  position: absolute;
33
  top: 50%;
34
  left: 50%;
35
+ transform: translate(-50%, -100%);
36
  text-align: center;
37
  max-width: 80%;
38
  line-height: 1.5;
39
  margin-bottom: 10px;
40
  }
 
 
 
 
 
 
 
 
 
 
 
 
41
  #loading-cover {
42
  transition: opacity 1.5s ease-in-out;
43
  }
44
  .fade-out {
45
  opacity: 0;
46
  }
47
+ #hf-logo {
48
+ position: absolute;
49
+ bottom: 20px;
50
+ left: 50%;
51
+ transform: translateX(-50%);
52
+ width: 50px;
53
+ height: auto;
54
+ }
55
 
56
  /* Start Game Button Styles */
57
  #start-game-container {
 
72
  font-size: 32px;
73
  padding: 15px 40px;
74
  color: white;
75
+ background-color: transparent;
76
  border: 2px solid white;
77
  border-radius: 8px;
78
  cursor: pointer;
 
80
  }
81
 
82
  #start-game-button:hover {
83
+ background-color: rgba(255, 255, 255, 0.1);
84
  transform: scale(1.05);
85
  }
86
  </style>
 
90
  <canvas id="unity-canvas"></canvas>
91
  </div>
92
  <div id="loading-cover" style="display: none; background-color: #000000">
93
+ <div class="loading-content">
94
+ <div id="loading-text">Vibe Coding in the Dark</div>
95
+ <img
96
+ id="hf-logo"
97
+ src="https://huggingface.co/datasets/huggingface/brand-assets/resolve/main/hf-logo-pirate.png"
98
+ alt="Hugging Face Logo"
99
+ />
100
+ </div>
101
  </div>
102
  <div id="start-game-container">
103
  <button id="start-game-button">START GAME</button>
 
139
  codeUrl: buildUrl + "/Build.wasm",
140
  streamingAssetsUrl: "StreamingAssets",
141
  companyName: "IndividualKex",
142
+ productName: "Echoes in the Dark",
143
  productVersion: "0.1.0",
144
  };
145