We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cb7a7a9 + cbcc248 commit b166905Copy full SHA for b166905
1 file changed
UnityPackager/Packer.cs
@@ -55,6 +55,9 @@ private static void AddFolder(string tempPath, string folder, string destination
55
56
string destinationPath = Path.Combine(destination, Path.GetRelativePath(folder, filename));
57
58
+ // unitypackage is always using / for directory separator
59
+ destinationPath = destinationPath.Replace(Path.DirectorySeparatorChar, '/');
60
+
61
AddAsset(tempPath, filename, destinationPath);
62
}
63
0 commit comments