Fixed one frame flash on textbox

This commit is contained in:
2021-08-12 09:50:36 -07:00
parent c1aab33f13
commit 82fe9a7e3c
2 changed files with 7 additions and 8 deletions

View File

@ -28,10 +28,9 @@ 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);
queueUpdate(&convo->actionQueue, engine);
}
void vnConversationRender(vnconversation_t *convo, shader_t *shader) {

View File

@ -81,7 +81,12 @@ void vnTextBoxUpdate(vntextbox_t *box, engine_t *engine) {
void vnTextBoxRender(vntextbox_t *box, shader_t *shader) {
int32_t charStart, charCount;
float yOffset;
if(box->text == NULL || box->state & VN_TEXTBOX_STATE_CLOSED > 0) return;
if(box->text == NULL || box->state & VN_TEXTBOX_STATE_CLOSED) return;
// Render the debug box.
box->frame.x = box->x;
box->frame.y = box->y;
frameRender(&box->frame, shader);
// Determine where we're rendering the indices up to.
charCount = box->textScroll;
@ -109,11 +114,6 @@ void vnTextBoxRender(vntextbox_t *box, shader_t *shader) {
);
if(charCount < 1) return;
// Render the debug box.
box->frame.x = box->x;
box->frame.y = box->y - yOffset;
frameRender(&box->frame, shader);
// Render the Text Box
shaderUsePosition(shader,
box->x + FRAME_BORDER_SIZE, box->y - yOffset + FRAME_BORDER_SIZE, 0,