color block

This commit is contained in:
Evan Pratten 2021-04-24 13:50:42 -04:00
parent 07acb6335b
commit 3f08d7e93f
2 changed files with 25 additions and 5 deletions

View File

@ -3,10 +3,7 @@ mod playerlogic;
use raylib::prelude::*; use raylib::prelude::*;
use crate::{ use crate::{gamecore::{GameCore, GameState}, lib::wrappers::audio::player::AudioPlayer, pallette::{SKY, WATER}};
gamecore::{GameCore, GameState},
lib::wrappers::audio::player::AudioPlayer,
};
use super::screen::Screen; use super::screen::Screen;
@ -38,6 +35,15 @@ impl InGameScreen {
width: game_core.resources.cave_mid_layer.width as f32, width: game_core.resources.cave_mid_layer.width as f32,
height: game_core.resources.cave_mid_layer.height as f32, height: game_core.resources.cave_mid_layer.height as f32,
}; };
let world_bounds = Rectangle {
x: -100.0,
y: -100.0,
width: game_core.resources.cave_mid_layer.width as f32,
height: game_core.resources.cave_mid_layer.height as f32,
};
// Clear the background
context_2d.draw_rectangle_rec(world_bounds, WATER);
// Render the world texture // Render the world texture
context_2d.draw_texture_rec( context_2d.draw_texture_rec(
@ -61,7 +67,7 @@ impl Screen for InGameScreen {
let dt = draw_handle.get_time() - game_core.last_frame_time; let dt = draw_handle.get_time() - game_core.last_frame_time;
// Clear frame // Clear frame
draw_handle.clear_background(Color::BLUE); draw_handle.clear_background(Color::BLACK);
// 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) {

View File

@ -19,4 +19,18 @@ pub const TRANSLUCENT_WHITE_64: Color = Color {
g: 255, g: 255,
b: 255, b: 255,
a: 64, a: 64,
};
pub const SKY: Color = Color {
r: 15,
g: 193,
b: 217,
a: 255
};
pub const WATER: Color = Color {
r: 24,
g: 66,
b: 143,
a: 255
}; };