Skip to content

Commit 1df4ffe

Browse files
Made more buttons slimmer on the main menu and moved the chat button
In the old client all the button were slimmer which in my opinion looked better.
1 parent bb7a732 commit 1df4ffe

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/main.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,17 +47,17 @@ async fn main() {
4747
|| screen_width() as f32 / 2.0 - 100.0,
4848
|| screen_height() as f32 / 2.0 - 50.0,
4949
|| 200.0,
50-
|| 100.0,
50+
|| 70.0,
5151
"Play",
5252
20,
5353
false
5454
);
5555

5656
let mut creator_button = Button::new(
5757
|| screen_width() as f32 / 2.0 - 100.0,
58-
|| screen_height() as f32 / 2.0 + 70.0,
58+
|| screen_height() as f32 / 2.0 + 30.0,
5959
|| 200.0,
60-
|| 100.0,
60+
|| 70.0,
6161
"Custom Levels",
6262
15,
6363
false
@@ -298,17 +298,17 @@ async fn main() {
298298
|| screen_width() - 210.0,
299299
|| 10.0,
300300
|| 200.0,
301-
|| 100.0,
301+
|| 70.0,
302302
"Account",
303303
20,
304304
false
305305
);
306306

307307
let mut chat_button = Button::new(
308-
|| screen_width() - 210.0,
309-
|| screen_height() - 110.0,
308+
|| 10.0,
309+
|| screen_height() - 80.0,
310310
|| 200.0,
311-
|| 100.0,
311+
|| 70.0,
312312
"Chat",
313313
20,
314314
false

0 commit comments

Comments
 (0)