glitchy titles go brrrr
This commit is contained in:
parent
dcdbf48200
commit
f287e638c0
@ -20,6 +20,7 @@ use tracing::{debug, error, info, trace};
|
||||
#[derive(Debug)]
|
||||
pub struct HowToPlayScreen {
|
||||
is_btm_pressed: bool, //Is back to menu button pressed
|
||||
counter: i32,
|
||||
}
|
||||
|
||||
impl HowToPlayScreen {
|
||||
@ -27,6 +28,7 @@ impl HowToPlayScreen {
|
||||
pub fn new() -> Self {
|
||||
Self {
|
||||
is_btm_pressed: false,
|
||||
counter: 0,
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -61,6 +63,8 @@ impl Action<Scenes, ScreenError, GameContext> for HowToPlayScreen {
|
||||
trace!("execute() called on HowToPlayScreen");
|
||||
self.render_screen_space(&mut context.renderer.borrow_mut(), &context.config);
|
||||
|
||||
self.counter += 1;
|
||||
|
||||
if self.is_btm_pressed {
|
||||
context
|
||||
.flag_send
|
||||
@ -75,6 +79,7 @@ impl Action<Scenes, ScreenError, GameContext> for HowToPlayScreen {
|
||||
fn on_finish(&mut self, _interrupted: bool) -> Result<(), ScreenError> {
|
||||
debug!("Finished HowToPlayScreen");
|
||||
self.is_btm_pressed = false;
|
||||
self.counter = 0;
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
@ -105,13 +110,28 @@ impl ScreenSpaceRender for HowToPlayScreen {
|
||||
let mouse_pressed: bool = raylib.is_mouse_button_pressed(MouseButton::MOUSE_LEFT_BUTTON);
|
||||
|
||||
//Render the title
|
||||
raylib.draw_rgb_split_text(
|
||||
Vector2::new(40.0, 80.0),
|
||||
"How to Play",
|
||||
70,
|
||||
true,
|
||||
Color::WHITE,
|
||||
);
|
||||
let timer: i32 = get_random_value(50, 400);
|
||||
if self.counter > timer {
|
||||
raylib.draw_rgb_split_text(
|
||||
Vector2::new(40.0, 80.0),
|
||||
"[How to Play]",
|
||||
70,
|
||||
true,
|
||||
Color::WHITE,
|
||||
);
|
||||
if self.counter > timer + 20 {
|
||||
self.counter = 0;
|
||||
}
|
||||
}
|
||||
else{
|
||||
raylib.draw_rgb_split_text(
|
||||
Vector2::new(40.0, 80.0),
|
||||
"[How to Play]",
|
||||
70,
|
||||
false,
|
||||
Color::WHITE,
|
||||
);
|
||||
}
|
||||
|
||||
// Render the instructions
|
||||
raylib.draw_rgb_split_text(
|
||||
|
@ -20,6 +20,7 @@ use tracing::{debug, error, info, trace};
|
||||
#[derive(Debug)]
|
||||
pub struct OptionsScreen {
|
||||
is_btm_pressed: bool, //Is back to menu button pressed
|
||||
counter: i32,
|
||||
}
|
||||
|
||||
impl OptionsScreen {
|
||||
@ -27,6 +28,7 @@ impl OptionsScreen {
|
||||
pub fn new() -> Self {
|
||||
Self {
|
||||
is_btm_pressed: false,
|
||||
counter: 0,
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -64,6 +66,8 @@ impl Action<Scenes, ScreenError, GameContext> for OptionsScreen {
|
||||
trace!("execute() called on OptionsScreen");
|
||||
self.render_screen_space(&mut context.renderer.borrow_mut(), &context.config);
|
||||
|
||||
self.counter += 1;
|
||||
|
||||
if self.is_btm_pressed {
|
||||
context
|
||||
.flag_send
|
||||
@ -108,7 +112,17 @@ impl ScreenSpaceRender for OptionsScreen {
|
||||
let mouse_pressed: bool = raylib.is_mouse_button_pressed(MouseButton::MOUSE_LEFT_BUTTON);
|
||||
|
||||
// Render the title
|
||||
raylib.draw_rgb_split_text(Vector2::new(40.0, 80.0), "Options", 70, true, Color::WHITE);
|
||||
let timer: i32 = get_random_value(50, 400);
|
||||
if self.counter > timer {
|
||||
raylib.draw_rgb_split_text(Vector2::new(40.0, 80.0), "[Options]", 70, true, Color::WHITE);
|
||||
if self.counter > timer + 20 {
|
||||
self.counter = 0;
|
||||
}
|
||||
}
|
||||
else{
|
||||
raylib.draw_rgb_split_text(Vector2::new(40.0, 80.0), "[Options]", 70, false, Color::WHITE);
|
||||
|
||||
}
|
||||
|
||||
// Render the text
|
||||
raylib.draw_rgb_split_text(
|
||||
|
Reference in New Issue
Block a user