we gottem bois
This commit is contained in:
parent
251df8b0ea
commit
7eecc79f84
@ -33,6 +33,7 @@ num-derive = "0.3"
|
|||||||
num = "0.4"
|
num = "0.4"
|
||||||
tiled = { version ="0.9.5", default-features = false }
|
tiled = { version ="0.9.5", default-features = false }
|
||||||
async-trait = "0.1.51"
|
async-trait = "0.1.51"
|
||||||
|
webbrowser = "0.5"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
puffin_viewer = "0.6"
|
puffin_viewer = "0.6"
|
||||||
|
@ -105,7 +105,7 @@ impl ScreenSpaceRender for HowToPlayScreen {
|
|||||||
// Render the instructions
|
// Render the instructions
|
||||||
raylib.draw_rgb_split_text(
|
raylib.draw_rgb_split_text(
|
||||||
Vector2::new(100.0, 300.0),
|
Vector2::new(100.0, 300.0),
|
||||||
">> SPACE to jump\n>> SHIFT to dash\n>> Don't die",
|
">> SPACE to jump\n>> SHIFT to dash\n>> Marcelo made these maps\n>> Marcelo hates you",
|
||||||
45,
|
45,
|
||||||
true,
|
true,
|
||||||
Color::WHITE,
|
Color::WHITE,
|
||||||
|
@ -43,6 +43,9 @@ impl Action<Scenes, ScreenError, GameContext> for OptionsScreen {
|
|||||||
fn on_first_run(&mut self, _context: &GameContext) -> Result<(), ScreenError> {
|
fn on_first_run(&mut self, _context: &GameContext) -> Result<(), ScreenError> {
|
||||||
debug!("Running OptionsScreen for the first time");
|
debug!("Running OptionsScreen for the first time");
|
||||||
|
|
||||||
|
// Rick-roll the user
|
||||||
|
let _ = webbrowser::open("https://www.youtube.com/watch?v=dQw4w9WgXcQ");
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -96,12 +99,22 @@ impl ScreenSpaceRender for OptionsScreen {
|
|||||||
// Render the title
|
// Render the title
|
||||||
raylib.draw_rgb_split_text(Vector2::new(40.0, 80.0), "Options", 70, true, Color::WHITE);
|
raylib.draw_rgb_split_text(Vector2::new(40.0, 80.0), "Options", 70, true, Color::WHITE);
|
||||||
|
|
||||||
|
// Render the text
|
||||||
|
raylib.draw_rgb_split_text(
|
||||||
|
Vector2::new(100.0, 300.0),
|
||||||
|
">> The game controls YOU",
|
||||||
|
45,
|
||||||
|
true,
|
||||||
|
Color::WHITE,
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
//Back to Menu
|
//Back to Menu
|
||||||
let hovering_back = Rectangle::new(35.0, screen_size.y as f32 - 80.0, 200.0, 40.0)
|
let hovering_back = Rectangle::new(35.0, screen_size.y as f32 - 80.0, 200.0, 40.0)
|
||||||
.check_collision_point_rec(mouse_position);
|
.check_collision_point_rec(mouse_position);
|
||||||
raylib.draw_rgb_split_text(
|
raylib.draw_rgb_split_text(
|
||||||
Vector2::new(25.0, screen_size.y - 50.0),
|
Vector2::new(25.0, screen_size.y - 50.0),
|
||||||
"Options",
|
"BACK TO MENU",
|
||||||
25,
|
25,
|
||||||
hovering_back,
|
hovering_back,
|
||||||
Color::WHITE,
|
Color::WHITE,
|
||||||
|
Reference in New Issue
Block a user