2026-06-19 UI, UI로직

This commit is contained in:
skrwns304@gmail.com
2026-06-19 14:27:40 +09:00
parent b751a9ed66
commit b1e85a5b89
549 changed files with 18058 additions and 20 deletions

View File

@@ -0,0 +1,19 @@
using UnityEngine;
[System.Serializable]
public class DialogueNode
{
[Header("Node ID")]
[Tooltip("선택지에서 nextNodeId로 이동할 때 사용하는 ID입니다.")]
public string nodeId;
[Header("Speaker")]
public NPCProfile speaker;
[Header("Dialogue")]
[TextArea(3, 5)]
public string dialogue;
[Header("Choices")]
public ChoiceData[] choices;
}