Draw lines around buttons
All checks were successful
Build and Publish WASM version of demo / Build-And-Deploy (push) Successful in 21s
All checks were successful
Build and Publish WASM version of demo / Build-And-Deploy (push) Successful in 21s
This commit is contained in:
parent
03a2ba7256
commit
9a99e8f264
1 changed files with 8 additions and 0 deletions
|
@ -321,6 +321,8 @@ bool TRunnerScreen::draw() {
|
||||||
int total_width = 0;
|
int total_width = 0;
|
||||||
DrawRectangle(0, GetScreenHeight() - BUTTON_FONT_SIZE, left_text_width,
|
DrawRectangle(0, GetScreenHeight() - BUTTON_FONT_SIZE, left_text_width,
|
||||||
BUTTON_FONT_SIZE, Color{255, 255, 255, 180});
|
BUTTON_FONT_SIZE, Color{255, 255, 255, 180});
|
||||||
|
DrawRectangleLines(0, GetScreenHeight() - BUTTON_FONT_SIZE,
|
||||||
|
left_text_width, BUTTON_FONT_SIZE, GREEN);
|
||||||
DrawText("Left", 0, GetScreenHeight() - BUTTON_FONT_SIZE,
|
DrawText("Left", 0, GetScreenHeight() - BUTTON_FONT_SIZE,
|
||||||
BUTTON_FONT_SIZE, BLACK);
|
BUTTON_FONT_SIZE, BLACK);
|
||||||
|
|
||||||
|
@ -328,6 +330,8 @@ bool TRunnerScreen::draw() {
|
||||||
DrawRectangle(total_width, GetScreenHeight() - BUTTON_FONT_SIZE,
|
DrawRectangle(total_width, GetScreenHeight() - BUTTON_FONT_SIZE,
|
||||||
right_text_width, BUTTON_FONT_SIZE,
|
right_text_width, BUTTON_FONT_SIZE,
|
||||||
Color{255, 255, 255, 180});
|
Color{255, 255, 255, 180});
|
||||||
|
DrawRectangleLines(total_width, GetScreenHeight() - BUTTON_FONT_SIZE,
|
||||||
|
right_text_width, BUTTON_FONT_SIZE, GREEN);
|
||||||
DrawText("Right", total_width, GetScreenHeight() - BUTTON_FONT_SIZE,
|
DrawText("Right", total_width, GetScreenHeight() - BUTTON_FONT_SIZE,
|
||||||
BUTTON_FONT_SIZE, BLACK);
|
BUTTON_FONT_SIZE, BLACK);
|
||||||
|
|
||||||
|
@ -336,6 +340,8 @@ bool TRunnerScreen::draw() {
|
||||||
DrawRectangle(total_width, GetScreenHeight() - BUTTON_FONT_SIZE * 2,
|
DrawRectangle(total_width, GetScreenHeight() - BUTTON_FONT_SIZE * 2,
|
||||||
forward_text_width, BUTTON_FONT_SIZE,
|
forward_text_width, BUTTON_FONT_SIZE,
|
||||||
Color{255, 255, 255, 180});
|
Color{255, 255, 255, 180});
|
||||||
|
DrawRectangleLines(total_width, GetScreenHeight() - BUTTON_FONT_SIZE * 2,
|
||||||
|
forward_text_width, BUTTON_FONT_SIZE, GREEN);
|
||||||
DrawText("Forward", total_width, GetScreenHeight() - BUTTON_FONT_SIZE * 2,
|
DrawText("Forward", total_width, GetScreenHeight() - BUTTON_FONT_SIZE * 2,
|
||||||
BUTTON_FONT_SIZE, BLACK);
|
BUTTON_FONT_SIZE, BLACK);
|
||||||
}
|
}
|
||||||
|
@ -343,6 +349,8 @@ bool TRunnerScreen::draw() {
|
||||||
DrawRectangle(GetScreenWidth() - reset_surface_text_width, 0,
|
DrawRectangle(GetScreenWidth() - reset_surface_text_width, 0,
|
||||||
reset_surface_text_width, BUTTON_FONT_SIZE,
|
reset_surface_text_width, BUTTON_FONT_SIZE,
|
||||||
Color{255, 255, 255, 180});
|
Color{255, 255, 255, 180});
|
||||||
|
DrawRectangleLines(GetScreenWidth() - reset_surface_text_width, 0,
|
||||||
|
reset_surface_text_width, BUTTON_FONT_SIZE, GREEN);
|
||||||
DrawText("Reset Surface", GetScreenWidth() - reset_surface_text_width, 0,
|
DrawText("Reset Surface", GetScreenWidth() - reset_surface_text_width, 0,
|
||||||
BUTTON_FONT_SIZE, BLACK);
|
BUTTON_FONT_SIZE, BLACK);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue