fix pause menu graphics

This commit is contained in:
Evan Pratten 2021-04-25 15:13:29 -04:00
parent d985cb2fad
commit 25c98de3ba

View File

@ -26,8 +26,11 @@ impl Screen for PauseMenuScreen {
game_core: &mut GameCore,
) -> Option<GameState> {
let mouse_position = draw_handle.get_mouse_position();
draw_handle.clear_background(Color::GRAY);
// TODO: Maybe we can stick some art here?
// draw_handle.clear_background(Color::GRAY);
// // TODO: Maybe we can stick some art here?
// Render the background
draw_handle.draw_texture(&game_core.resources.shop_background, 0, 0, Color::WHITE);
// If escape is pressed again, return to the previous render state
if draw_handle.is_key_pressed(KeyboardKey::KEY_ESCAPE) {