raylib logo

This commit is contained in:
Evan Pratten 2021-04-25 13:51:41 -04:00
parent 10949850f6
commit 8e8cf7bf4c

View File

@ -89,10 +89,10 @@ impl LoadingScreen {
let mask = self.get_logo_mask(playthrough_percent); let mask = self.get_logo_mask(playthrough_percent);
// Create modified colors // Create modified colors
let alpha_orange = Color { let alpha_black = Color {
r: RUST_ORANGE.r, r: 0,
g: RUST_ORANGE.g, g: 0,
b: RUST_ORANGE.b, b: 0,
a: mask.a, a: mask.a,
}; };
@ -102,7 +102,7 @@ impl LoadingScreen {
win_height / 2 - 128, win_height / 2 - 128,
256, 256,
256, 256,
alpha_orange, alpha_black,
); );
draw_handle.draw_rectangle( draw_handle.draw_rectangle(
win_width / 2 - 112, win_width / 2 - 112,
@ -111,19 +111,19 @@ impl LoadingScreen {
224, 224,
Color::WHITE, Color::WHITE,
); );
draw_handle.draw_text( // draw_handle.draw_text(
"rust", // "rust",
win_width / 2 - 69, // win_width / 2 - 69,
win_height / 2 + 18, // win_height / 2 + 18,
50, // 50,
alpha_orange, // alpha_orange,
); // );
draw_handle.draw_text( draw_handle.draw_text(
"raylib", "raylib",
win_width / 2 - 44, win_width / 2 - 44,
win_height / 2 + 48, win_height / 2 + 48,
50, 50,
alpha_orange, alpha_black,
); );
// Move on to next logo if needed // Move on to next logo if needed