Aligned poker player UI a bit.
This commit is contained in:
@ -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);
|
||||
|
@ -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++;
|
||||
}
|
||||
|
Reference in New Issue
Block a user