bump: Unity 6.3 LTS

This commit is contained in:
2025-12-07 21:12:40 +09:00
parent eb51c43e38
commit 50aa8b6b02
25 changed files with 300 additions and 8676 deletions

View File

@@ -9,7 +9,7 @@ public class Command
public string GetParam(string key, string defaultValue = "")
{
return Params.ContainsKey(key) ? Params[key].ToString() : defaultValue;
return Params.TryGetValue(key, out var val) ? val.ToString() : defaultValue;
}
}
public class Script