DEG-166-NPC-대사-추가 #54

Merged
Sehyeon merged 4 commits from DEG-166-NPC-대사-추가 into main 2025-05-14 05:53:43 +00:00
2 changed files with 7 additions and 1 deletions
Showing only changes of commit 76799a9476 - Show all commits

View File

@ -28,7 +28,7 @@ public class InteractionController : MonoBehaviour
{
housingCanvasController.ShowNpcInteractionButton(() =>
{
GameManager.Instance.StartNPCDialogue(GamePhase.Gameplay);
GameManager.Instance.DirectStartDialogue();
});
}

View File

@ -57,6 +57,12 @@ public partial class GameManager : Singleton<GameManager>
chatWindowController.SetGamePhase(phase);
}
public void DirectStartDialogue()
{
if (chatWindowController == null) chatWindowController = FindObjectOfType<ChatWindowController>();
chatWindowController.SetGamePhase(GamePhase.Gameplay);
}
#endregion
//일시 정지