프로젝트를 오늘까지 끝내기로 마음먹고, 어제 밤을 샜다. 우선 대사가 겹쳐서 사라지는걸 막기 위해 큐를 이용해 대사들을 빠짐없이 보여주도록 하였다. Conversation.h/*생략*/UCLASS()class KANNATPS_API UConversation : public UUserWidget{ GENERATED_BODY()/*생략*/private: /*생략*/ TQueue> ConversationQueue; TQueue MessageQueue;}; Conversation.cpp// Fill out your copyright notice in the Description page of Project Settings./*생략*/void UConversation::SetConversation(){ // 큐에..