fix: 無名のアセットファイルを生成しようとする

This commit is contained in:
anatawa12
2023-08-23 14:44:32 +09:00
committed by GitHub
parent 97eb58b4fc
commit e87666994c
2 changed files with 5 additions and 0 deletions

View File

@@ -74,6 +74,9 @@ namespace UniGLTF
if (path.StartsWith('.'))
path = '+' + path;
if (path == "")
path = "(empty)";
return path;
}

View File

@@ -69,6 +69,8 @@ namespace UniVRM10
}
if (path.StartsWith('.'))
path = '+' + path;
if (path == "")
path = "(empty)";
return path;
}
}