整理结构

This commit is contained in:
ww-rm
2025-04-12 11:35:36 +08:00
parent 2ae175abd0
commit 90bfaa7b56
19 changed files with 339 additions and 381 deletions

View File

@@ -38,7 +38,7 @@ namespace SpineViewer.Spine
skelPath = Path.GetFullPath(skelPath);
atlasPath = Path.GetFullPath(atlasPath);
if (version == SpineVersion.Auto) version = SpineHelper.GetVersion(skelPath);
if (version == SpineVersion.Auto) version = SpineUtils.GetVersion(skelPath);
if (!File.Exists(atlasPath)) throw new FileNotFoundException($"atlas file {atlasPath} not found");
return New(version, [skelPath, atlasPath]).PostInit();
}