fix pause menu graphics
This commit is contained in:
parent
d985cb2fad
commit
25c98de3ba
@ -26,8 +26,11 @@ impl Screen for PauseMenuScreen {
|
|||||||
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);
|
||||||
|
|
||||||
// If escape is pressed again, return to the previous render state
|
// If escape is pressed again, return to the previous render state
|
||||||
if draw_handle.is_key_pressed(KeyboardKey::KEY_ESCAPE) {
|
if draw_handle.is_key_pressed(KeyboardKey::KEY_ESCAPE) {
|
||||||
|
Reference in New Issue
Block a user