Merge pull request #33 from Ewpratten/backgrounds

add backgrounds to menus
This commit is contained in:
Evan Pratten 2021-04-25 13:48:17 -04:00 committed by GitHub
commit c91d82080a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 7 deletions

View File

@ -26,8 +26,11 @@ impl Screen for GameEndScreen {
game_core: &mut GameCore, game_core: &mut GameCore,
) -> Option<GameState> { ) -> Option<GameState> {
let mouse_position = draw_handle.get_mouse_position(); let mouse_position = draw_handle.get_mouse_position();
draw_handle.clear_background(Color::GRAY); // draw_handle.clear_background(Color::GRAY);
// TODO: Maybe we can stick some art here? // // TODO: Maybe we can stick some art here?
// Render the background
draw_handle.draw_texture(&game_core.resources.shop_background, 0, 0, Color::WHITE);
// Window dimensions // Window dimensions
let win_height = draw_handle.get_screen_height(); let win_height = draw_handle.get_screen_height();

View File

@ -28,8 +28,10 @@ impl Screen for MainMenuScreen {
let win_height = draw_handle.get_screen_height(); let win_height = draw_handle.get_screen_height();
let win_width = draw_handle.get_screen_width(); let win_width = draw_handle.get_screen_width();
// Clear frame // // Clear frame
draw_handle.clear_background(Color::BLUE); // draw_handle.clear_background(Color::BLUE);
// Render the background
draw_handle.draw_texture(&game_core.resources.shop_background, 0, 0, Color::WHITE);
// Render title // Render title
draw_handle.draw_text( draw_handle.draw_text(
@ -56,7 +58,7 @@ impl Screen for MainMenuScreen {
(win_width / 4), (win_width / 4),
60, 60,
match hovering_play_button { match hovering_play_button {
true => Color::GREEN, true => Color::BLUE,
false => Color::BLACK, false => Color::BLACK,
}, },
); );
@ -66,7 +68,7 @@ impl Screen for MainMenuScreen {
(win_width / 4) + 100, (win_width / 4) + 100,
60, 60,
match hovering_shop_button { match hovering_shop_button {
true => Color::GREEN, true => Color::BLUE,
false => Color::BLACK, false => Color::BLACK,
}, },
); );
@ -76,7 +78,7 @@ impl Screen for MainMenuScreen {
(win_width / 4) + 200, (win_width / 4) + 200,
60, 60,
match hovering_quit_button { match hovering_quit_button {
true => Color::GREEN, true => Color::RED,
false => Color::BLACK, false => Color::BLACK,
}, },
); );