Aligned poker player UI a bit.

This commit is contained in:
2021-09-12 22:54:03 -07:00
parent 8d4df83473
commit e827beff06
2 changed files with 4 additions and 4 deletions

View File

@ -102,7 +102,7 @@ void pokerPlayerUiRender(
gridSetSize(
&ui->grid, engine->render.width, engine->render.height,
align.width, align.height,
align.x, align.y
align.x + x, align.y + y
);
// Render face
@ -119,7 +119,7 @@ void pokerPlayerUiRender(
labelSetText(&ui->label, font, buffer);
align = gridAlignChild(
&ui->grid, ui->grid.breakpointCurrent, ui->grid.children + 1, &sCol, &sRow,
ALIGN_POS_END | ALIGN_SIZE_ORIGINAL, ALIGN_POS_START | ALIGN_SIZE_ORIGINAL,
ALIGN_POS_END | ALIGN_SIZE_ORIGINAL, ALIGN_POS_CENTER | ALIGN_SIZE_ORIGINAL,
ui->label.info.width, ui->label.info.height
);
labelRender(&ui->label, shader, align.x, align.y);
@ -140,7 +140,7 @@ void pokerPlayerUiRender(
labelSetText(&ui->label, font, buffer);
align = gridAlignChild(
&ui->grid, ui->grid.breakpointCurrent, ui->grid.children + 2, &sCol, &sRow,
ALIGN_POS_END | ALIGN_SIZE_ORIGINAL, ALIGN_POS_START | ALIGN_SIZE_ORIGINAL,
ALIGN_POS_END | ALIGN_SIZE_ORIGINAL, ALIGN_POS_CENTER | ALIGN_SIZE_ORIGINAL,
ui->label.info.width, ui->label.info.height
);
labelRender(&ui->label, shader, align.x, align.y);

View File

@ -42,7 +42,7 @@ void pokerUiRender(pokergame_t *pokerGame, engine_t *engine) {
pokerPlayerUiRender(
ui, pokerGame, &pokerGame->assets.shader, &pokerGame->assets.font, engine,
i, engine->render.width, j * 75.0f
i, 0, j * 75.0f
);
j++;
}