Skip to content

Commit 236daea

Browse files
committed
fix export all objects path
1 parent b512093 commit 236daea

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

AssetStudio.GUI/Studio.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -805,7 +805,7 @@ public static Task ExportSplitObjects(string savePath, TreeNodeCollection nodes)
805805
continue;
806806
}
807807
//处理非法文件名
808-
var filename = FixFileName(j.Text);
808+
var filename = FixFileName(j.gameObject.Name);
809809
if (node.Parent != null)
810810
{
811811
filename = Path.Combine(FixFileName(node.Parent.Text), filename);

0 commit comments

Comments
 (0)