Skip to content

Commit ee3cbb1

Browse files
committed
chore!: switch default backend to AssetsTools
1 parent 0b7cded commit ee3cbb1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

TypeTreeGeneratorAPI/NativeAPI.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public static IntPtr TypeTreeGenerator_init(IntPtr unityVersionPtr, IntPtr gener
3636
}
3737
try
3838
{
39-
var handle = new TypeTreeGeneratorHandle((generatorNameStr != null) ? generatorNameStr : "AssetStudio", unityVersion);
39+
var handle = new TypeTreeGeneratorHandle((generatorNameStr != null) ? generatorNameStr : "AssetsTools", unityVersion);
4040
return GCHandle.ToIntPtr(GCHandle.Alloc(handle));
4141
}
4242
catch (Exception ex)

bindings/python/TypeTreeGeneratorAPI/TypeTreeGenerator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ class TypeTreeGenerator:
109109
def __init__(
110110
self,
111111
unity_version: str,
112-
generator: TypeTreeBackend = "AssetStudio",
112+
generator: TypeTreeBackend = "AssetsTools",
113113
asm_path: Optional[str] = None,
114114
):
115115
init_dll(asm_path)

0 commit comments

Comments
 (0)