This repository has been archived on 2021-10-11. You can view files and clone it, but cannot push or open issues or pull requests.

19 lines
612 B
Rust

use crate::{GameConfig, utilities::render_layer::ScreenSpaceRender};
use raylib::prelude::*;
use super::InGameScreen;
impl ScreenSpaceRender for InGameScreen {
fn render_screen_space(
&mut self,
raylib: &mut crate::utilities::non_ref_raylib::HackedRaylibHandle,
config: &GameConfig
) {
puffin::profile_function!();
// Calculate the logo position
let screen_size = raylib.get_screen_size();
// Draw a thin glow box around the screen
raylib.draw_rectangle_lines(0, 0, screen_size.x as i32, screen_size.y as i32, config.colors.red);
}
}