Better indication of selected card
This commit is contained in:
parent
b5721105b1
commit
ec0459e35b
7
card.c
7
card.c
@ -14,6 +14,10 @@ void draw_card(Card *c, Texture2D *cards_texture, int index) {
|
|||||||
|
|
||||||
Color color = index == 1 ? BLACK : BRICKRED;
|
Color color = index == 1 ? BLACK : BRICKRED;
|
||||||
|
|
||||||
|
if (c->selected) {
|
||||||
|
DrawRectangleRec((Rectangle) { c->position.x - 6, c->position.y - 6, card_size.x + 12, card_size.y + 12 }, BLUE);
|
||||||
|
}
|
||||||
|
|
||||||
if (c->visible) {
|
if (c->visible) {
|
||||||
DrawTexturePro(
|
DrawTexturePro(
|
||||||
*cards_texture,
|
*cards_texture,
|
||||||
@ -27,9 +31,6 @@ void draw_card(Card *c, Texture2D *cards_texture, int index) {
|
|||||||
DrawRectangleRec((Rectangle) { c->position.x, c->position.y, card_size.x, card_size.y }, color);
|
DrawRectangleRec((Rectangle) { c->position.x, c->position.y, card_size.x, card_size.y }, color);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (c->selected) {
|
|
||||||
DrawCircle(c->position.x + 10, c->position.y + 10, 10, BLUE);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool point_within_card(Card *c, Vector2 point) {
|
bool point_within_card(Card *c, Vector2 point) {
|
||||||
|
Loading…
Reference in New Issue
Block a user