mirror of
https://github.com/HoonTB/Project-AS.git
synced 2025-12-26 11:51:21 +09:00
feat: Implement core visual novel systems for variable management, character layout, and script handling
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user