Add blackjack dialog triggers and dialogue data

This commit is contained in:
dldydtn9755-crypto
2026-06-23 17:27:20 +09:00
parent 86e1b4ac24
commit f4dcfdec8a
17 changed files with 1672 additions and 5 deletions

View File

@@ -66,7 +66,11 @@ private string ResolveRegion()
}
// 영역 전환 (DialogRegion 트리거가 호출). 다음 Play()부터 해당 영역 대화가 재생됨.
public void SetRegion(string region) => _currentRegion = region;
public void SetRegion(string region)
{
Debug.Log($"[DialogPlayer] {gameObject.name} SetRegion: {_currentRegion} -> {region}");
_currentRegion = region;
}
public string CurrentRegion => _currentRegion;