coloriing

This commit is contained in:
Evan Pratten 2021-04-24 08:40:36 -04:00
parent 8d6b088232
commit fe1df618c0
2 changed files with 4 additions and 1 deletions

View File

@ -141,6 +141,9 @@ impl InGameScreen {
//TODO: This causes a render bug //TODO: This causes a render bug
draw_handle.draw_rectangle_lines_ex(progress_bar_slider, 6, Color::WHITE); draw_handle.draw_rectangle_lines_ex(progress_bar_slider, 6, Color::WHITE);
// TODO: Breath bar
// TODO: Boost bar
} }
} }
@ -153,7 +156,7 @@ impl Screen for InGameScreen {
game_core: &mut GameCore, game_core: &mut GameCore,
) -> Option<GameState> { ) -> Option<GameState> {
// Clear frame // Clear frame
draw_handle.clear_background(Color::WHITE); draw_handle.clear_background(Color::RAYWHITE);
// Handle the pause menu being opened // Handle the pause menu being opened
if draw_handle.is_key_pressed(KeyboardKey::KEY_ESCAPE) { if draw_handle.is_key_pressed(KeyboardKey::KEY_ESCAPE) {

0
src/pallette.rs Normal file
View File