refactor: Update Unity to 2022.3.62

This commit is contained in:
2025-06-21 01:22:02 +08:00
parent d71bf7d4a5
commit 283783954f
112 changed files with 778 additions and 907 deletions

View File

@@ -7,9 +7,9 @@ namespace Cryville.Crtr.Skin {
public class SkinInterpreter : PdtInterpreter {
public SkinInterpreter(string src, Binder binder) : base(src, binder) { }
readonly List<SkinSelector> s = new List<SkinSelector>();
readonly HashSet<string> a = new HashSet<string>();
readonly List<string> k = new List<string>(2);
readonly List<SkinSelector> s = new();
readonly HashSet<string> a = new();
readonly List<string> k = new(2);
protected override object InterpretKey(Type type) {
if (typeof(SkinElement).IsAssignableFrom(type))
return InterpretSkinElementKey();