feat: Implement core visual novel systems for variable management, character layout, and script handling

This commit is contained in:
2025-11-29 22:45:25 +09:00
parent 3562440120
commit 1528cc3202
4 changed files with 245 additions and 77 deletions

View File

@@ -62,7 +62,7 @@ public class VariableManager
public string ReplaceVariables(string text)
{
if (string.IsNullOrEmpty(text)) return text;
if (string.IsNullOrEmpty(text) || !text.Contains("{")) return text;
foreach (var kvp in _variables)
{