background gradient
This commit is contained in:
parent
561bb5abf5
commit
1585521fe3
@ -3,12 +3,7 @@ mod playerlogic;
|
|||||||
|
|
||||||
use raylib::prelude::*;
|
use raylib::prelude::*;
|
||||||
|
|
||||||
use crate::{
|
use crate::{entities::enemy::base::EnemyBase, gamecore::{GameCore, GameState}, lib::wrappers::audio::player::AudioPlayer, pallette::{SKY, WATER, WATER_DARK}};
|
||||||
entities::enemy::base::EnemyBase,
|
|
||||||
gamecore::{GameCore, GameState},
|
|
||||||
lib::wrappers::audio::player::AudioPlayer,
|
|
||||||
pallette::{SKY, WATER},
|
|
||||||
};
|
|
||||||
|
|
||||||
use super::screen::Screen;
|
use super::screen::Screen;
|
||||||
|
|
||||||
@ -32,7 +27,7 @@ impl InGameScreen {
|
|||||||
&mut self,
|
&mut self,
|
||||||
context_2d: &mut RaylibMode2D<RaylibDrawHandle>,
|
context_2d: &mut RaylibMode2D<RaylibDrawHandle>,
|
||||||
game_core: &mut GameCore,
|
game_core: &mut GameCore,
|
||||||
dt: f64
|
dt: f64,
|
||||||
) {
|
) {
|
||||||
// Build source bounds
|
// Build source bounds
|
||||||
let source_bounds = Rectangle {
|
let source_bounds = Rectangle {
|
||||||
@ -49,7 +44,14 @@ impl InGameScreen {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// Clear the background
|
// 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
|
// Render fish
|
||||||
let fish_clone = game_core.world.fish.clone();
|
let fish_clone = game_core.world.fish.clone();
|
||||||
@ -115,7 +117,7 @@ impl Screen for InGameScreen {
|
|||||||
|
|
||||||
// Open a 2D context
|
// Open a 2D context
|
||||||
{
|
{
|
||||||
let mut context_2d = draw_handle.begin_mode2D(game_core.master_camera);
|
let mut context_2d = draw_handle.begin_mode2D(game_core.master_camera);
|
||||||
|
|
||||||
// Render the world
|
// Render the world
|
||||||
self.render_world(&mut context_2d, game_core, dt);
|
self.render_world(&mut context_2d, game_core, dt);
|
||||||
|
@ -35,6 +35,13 @@ pub const WATER: Color = Color {
|
|||||||
a: 255
|
a: 255
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pub const WATER_DARK: Color = Color {
|
||||||
|
r: 8,
|
||||||
|
g: 24,
|
||||||
|
b: 54,
|
||||||
|
a: 255
|
||||||
|
};
|
||||||
|
|
||||||
pub const TRANSLUCENT_RED_64: Color = Color {
|
pub const TRANSLUCENT_RED_64: Color = Color {
|
||||||
r: 230,
|
r: 230,
|
||||||
g: 41,
|
g: 41,
|
||||||
|
Reference in New Issue
Block a user