Some small touch-ups

This commit is contained in:
Evan Pratten 2021-10-02 17:04:52 -04:00
parent b96d9e4ef4
commit bd5659cbaa
3 changed files with 1 additions and 14 deletions

View File

@ -17,7 +17,6 @@ pub enum CharacterState {
Running,
Jumping,
Dashing,
Halt,
}
#[derive(Debug)]

View File

@ -1,5 +1,5 @@
use self::{
pause_screen::PauseScreen
pause_screen::PauseScreen,
fsm_error_screen::FsmErrorScreen,
ingame_scene::{level::loader::load_all_levels, InGameScreen},
loading_screen::LoadingScreen,

View File

@ -157,18 +157,6 @@ impl ScreenSpaceRender for PauseScreen {
Color::WHITE
);
raylib.draw_text(
&format!(
"Position x: {} Position y: {}",
mouse_position.x,
mouse_position.y
),
screen_size.x as i32 / 30,
screen_size.y as i32 / 30,
20,
Color::WHITE
);
if Rectangle::new(390.0,464.0,200.0,50.0).check_collision_point_rec(mouse_position) {
raylib.draw_text(
"Main Menu",