【bug】

iOS_release
zhangaotian 2024-07-19 16:07:59 +08:00
parent b51d81a835
commit 54c4e88145
1 changed files with 3 additions and 2 deletions

View File

@ -65,7 +65,6 @@ namespace Framework.Manager
this.Name = name; this.Name = name;
} }
[JsonConstructor]
public BuildNode() public BuildNode()
{ {
} }
@ -354,7 +353,9 @@ namespace Framework.Manager
{ {
try try
{ {
var fileEntries = Directory.GetFiles(iconsPath, "*.png"); var path = iconsPath.Replace(Application.dataPath, "").Replace('\\', '/');
DebugUtil.LogError("路径:{0}", path);
var fileEntries = Directory.GetFiles(path, "*.png");
foreach (var filePath in fileEntries) foreach (var filePath in fileEntries)
{ {
var fileName = Path.GetFileName(filePath); var fileName = Path.GetFileName(filePath);