Skip to content

Commit 903819e

Browse files
authored
Maya 2023 installer (#1055)
1 parent bdd428c commit 903819e

File tree

3 files changed

+226
-122
lines changed

3 files changed

+226
-122
lines changed

BabylonJS_Installer/BabylonJS_Installer/Downloader.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ private bool tryInstallDownloaded(string downloadVersion)
148148
if (entry.IsDirectory()) continue;
149149
if (entry.Name.Substring(0, 9) == "AEbabylon") entry.ExtractToFile(this.installDir + "scripts\\AETemplates" + "/" + entry.Name, true);
150150
else if (entry.Name.Substring(0, 9) == "NEbabylon") entry.ExtractToFile(this.installDir + "scripts\\NETemplates" + "/" + entry.Name, true);
151+
else if (entry.Name == "Maya2Babylon.dll") entry.ExtractToFile(this.installDir + this.installLibSubDir + "/Maya2Babylon.nll.dll", true); // force renaming the dll in case of maya plug-in
151152
else entry.ExtractToFile(this.installDir + this.installLibSubDir + "/" + entry.Name, true);
152153
}
153154
}

0 commit comments

Comments
 (0)