background gradient

This commit is contained in:
Evan Pratten 2021-04-24 19:09:28 -04:00
parent 561bb5abf5
commit 1585521fe3
2 changed files with 18 additions and 9 deletions

View File

@ -3,12 +3,7 @@ mod playerlogic;
use raylib::prelude::*;
use crate::{
entities::enemy::base::EnemyBase,
gamecore::{GameCore, GameState},
lib::wrappers::audio::player::AudioPlayer,
pallette::{SKY, WATER},
};
use crate::{entities::enemy::base::EnemyBase, gamecore::{GameCore, GameState}, lib::wrappers::audio::player::AudioPlayer, pallette::{SKY, WATER, WATER_DARK}};
use super::screen::Screen;
@ -32,7 +27,7 @@ impl InGameScreen {
&mut self,
context_2d: &mut RaylibMode2D<RaylibDrawHandle>,
game_core: &mut GameCore,
dt: f64
dt: f64,
) {
// Build source bounds
let source_bounds = Rectangle {
@ -49,7 +44,14 @@ impl InGameScreen {
};
// Clear the background
context_2d.draw_rectangle_rec(world_bounds, WATER);
context_2d.draw_rectangle_gradient_v(
world_bounds.x as i32,
world_bounds.y as i32,
world_bounds.width as i32,
world_bounds.height as i32,
WATER,
WATER_DARK,
);
// Render fish
let fish_clone = game_core.world.fish.clone();

View File

@ -35,6 +35,13 @@ pub const WATER: Color = Color {
a: 255
};
pub const WATER_DARK: Color = Color {
r: 8,
g: 24,
b: 54,
a: 255
};
pub const TRANSLUCENT_RED_64: Color = Color {
r: 230,
g: 41,