Got the look action working.

This commit is contained in:
2021-08-24 10:24:26 -07:00
parent ee3c27b54b
commit 6981a4b3d7
3 changed files with 3 additions and 6 deletions

View File

@ -14,6 +14,7 @@ void _pokerGameActionLookOnStart(
pokergame_t *game = (pokergame_t *)action->data;
pokergameactiondata_t *data = game->actionData + i;
printf("Looking at %u\n", data->lookAtPlayer);
pokerWorldLookAtPlayer(&game->scene, data->lookAtPlayer);
queueNext(queue);
}