diff --git a/include/dawn/vn/vntextbox.h b/include/dawn/vn/vntextbox.h index efbaa0a9..35e532db 100644 --- a/include/dawn/vn/vntextbox.h +++ b/include/dawn/vn/vntextbox.h @@ -35,6 +35,9 @@ typedef struct { /** X, Y Position of the textbox */ float x, y; + /** Readonly values for the dimensions of the textbox */ + float width, height; + /** Animation of the textbox */ float textScroll; diff --git a/src/vn/conversation/vnconversation.c b/src/vn/conversation/vnconversation.c index 1c16bce5..439ddb33 100644 --- a/src/vn/conversation/vnconversation.c +++ b/src/vn/conversation/vnconversation.c @@ -29,6 +29,8 @@ queueaction_t * vnConversationAdd(vnconversation_t *conversation) { void vnConversationUpdate(vnconversation_t *convo, engine_t *engine) { queueUpdate(&convo->actionQueue, engine); + + convo->textbox.y = engine->render.height - convo->textbox.height; vnTextBoxUpdate(&convo->textbox, engine); } diff --git a/src/vn/gui/vntextbox.c b/src/vn/gui/vntextbox.c index 768ce07a..572ff65e 100644 --- a/src/vn/gui/vntextbox.c +++ b/src/vn/gui/vntextbox.c @@ -39,6 +39,7 @@ void vnTextBoxRebuffer(vntextbox_t *box) { // Determine size of the textbox inside the frame. float textMaxWidth = box->widthMax - FRAME_BORDER_SIZE_FULL; + box->width = box->widthMax; // Rebuffer the text. fontTextClamp( @@ -47,9 +48,8 @@ void vnTextBoxRebuffer(vntextbox_t *box) { fontTextInit(box->font, &box->primitive, &box->textInfo); // Resize the frame - frameSetSize( - &box->frame, box->widthMax, FONT_LINE_HEIGHT * box->linesMax - ); + box->height = FONT_LINE_HEIGHT * box->linesMax; + frameSetSize(&box->frame, box->width, box->height); } void vnTextBoxUpdate(vntextbox_t *box, engine_t *engine) {