Some small touch-ups
This commit is contained in:
parent
b96d9e4ef4
commit
bd5659cbaa
@ -17,7 +17,6 @@ pub enum CharacterState {
|
|||||||
Running,
|
Running,
|
||||||
Jumping,
|
Jumping,
|
||||||
Dashing,
|
Dashing,
|
||||||
Halt,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
use self::{
|
use self::{
|
||||||
pause_screen::PauseScreen
|
pause_screen::PauseScreen,
|
||||||
fsm_error_screen::FsmErrorScreen,
|
fsm_error_screen::FsmErrorScreen,
|
||||||
ingame_scene::{level::loader::load_all_levels, InGameScreen},
|
ingame_scene::{level::loader::load_all_levels, InGameScreen},
|
||||||
loading_screen::LoadingScreen,
|
loading_screen::LoadingScreen,
|
||||||
|
@ -157,18 +157,6 @@ impl ScreenSpaceRender for PauseScreen {
|
|||||||
Color::WHITE
|
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) {
|
if Rectangle::new(390.0,464.0,200.0,50.0).check_collision_point_rec(mouse_position) {
|
||||||
raylib.draw_text(
|
raylib.draw_text(
|
||||||
"Main Menu",
|
"Main Menu",
|
||||||
|
Reference in New Issue
Block a user