Merge branch 'master' into win_game

This commit is contained in:
Evan Pratten 2021-10-02 21:12:57 -07:00 committed by GitHub
commit 9c9e339d7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -169,6 +169,17 @@ impl ScreenSpaceRender for MainMenuScreen {
hovering_start_game, hovering_start_game,
Color::WHITE, Color::WHITE,
); );
if hovering_start_game{
raylib.draw_rgb_split_text(
Vector2::new(50.0, 300.0),
">>",
25,
hovering_start_game,
Color::WHITE,
);
};
self.is_start_pressed = mouse_pressed && hovering_start_game; self.is_start_pressed = mouse_pressed && hovering_start_game;
// How to Play // How to Play
@ -181,6 +192,15 @@ impl ScreenSpaceRender for MainMenuScreen {
hovering_htp, hovering_htp,
Color::WHITE, Color::WHITE,
); );
if hovering_htp{
raylib.draw_rgb_split_text(
Vector2::new(50.0, 350.0),
">>",
25,
hovering_htp,
Color::WHITE,
);
};
self.is_htp_pressed = mouse_pressed && hovering_htp; self.is_htp_pressed = mouse_pressed && hovering_htp;
// OPTIONS // OPTIONS
@ -193,6 +213,15 @@ impl ScreenSpaceRender for MainMenuScreen {
hovering_options, hovering_options,
Color::WHITE, Color::WHITE,
); );
if hovering_options{
raylib.draw_rgb_split_text(
Vector2::new(50.0, 400.0),
">>",
25,
hovering_options,
Color::WHITE,
);
};
self.is_options_pressed = mouse_pressed && hovering_options; self.is_options_pressed = mouse_pressed && hovering_options;
// QUIT // QUIT
@ -205,6 +234,15 @@ impl ScreenSpaceRender for MainMenuScreen {
hovering_quit, hovering_quit,
Color::WHITE, Color::WHITE,
); );
if hovering_quit{
raylib.draw_rgb_split_text(
Vector2::new(50.0, 450.0),
">>",
25,
hovering_quit,
Color::WHITE,
);
};
self.is_quit_pressed = mouse_pressed && hovering_quit; self.is_quit_pressed = mouse_pressed && hovering_quit;
} }
} }