게임클리어 이벤트

This commit is contained in:
2026-06-23 17:03:38 +09:00
parent fecc7556d6
commit b85855d4d6
25 changed files with 1317 additions and 28 deletions

View File

@@ -53,9 +53,9 @@ public void Show(CharacterData speaker, string text, float chestHeight, float fo
_activeLateralOffset = lateralOffset;
if (_speakerName != null)
_speakerName.text = speaker != null ? speaker.Name : string.Empty;
_speakerName.text = speaker != null ? DialogVariables.Format(speaker.Name) : string.Empty;
if (_dialogueText != null)
_dialogueText.text = text;
_dialogueText.text = DialogVariables.Format(text); // {key} 토큰 치환
if (_panel != null) _panel.SetActive(true);
}