Skip to content

Commit

Permalink
Maya 2023 installer (#1055)
Browse files Browse the repository at this point in the history
  • Loading branch information
pandaGaume authored Jun 17, 2022
1 parent bdd428c commit 903819e
Show file tree
Hide file tree
Showing 3 changed files with 226 additions and 122 deletions.
1 change: 1 addition & 0 deletions BabylonJS_Installer/BabylonJS_Installer/Downloader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ private bool tryInstallDownloaded(string downloadVersion)
if (entry.IsDirectory()) continue;
if (entry.Name.Substring(0, 9) == "AEbabylon") entry.ExtractToFile(this.installDir + "scripts\\AETemplates" + "/" + entry.Name, true);
else if (entry.Name.Substring(0, 9) == "NEbabylon") entry.ExtractToFile(this.installDir + "scripts\\NETemplates" + "/" + entry.Name, true);
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
else entry.ExtractToFile(this.installDir + this.installLibSubDir + "/" + entry.Name, true);
}
}
Expand Down
Loading

0 comments on commit 903819e

Please sign in to comment.