Merge pull request #2 from FirefightGI/Windows-Build-Issue-Fix

Update AssimpUnity.cs
This commit is contained in:
Dongho Kang 2020-08-24 19:50:59 +09:00 коммит произвёл GitHub
Родитель 09da4018e4 087d698fa7
Коммит f3fc04aceb
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -89,9 +89,8 @@ namespace Assimp
native32LibPath = Path.Combine(editorPluginNativeFolder, "win", "x86");
break;
case RuntimePlatform.WindowsPlayer:
//Seems like windows they are not added to any specific folder, just dropped inside Plugins folder
native64LibPath = pluginsFolder;
native32LibPath = pluginsFolder;
native64LibPath = pluginsFolder + "/x86_64";
native32LibPath = pluginsFolder + "/x86";
break;
case RuntimePlatform.LinuxEditor:
native64LibPath = Path.Combine(editorPluginNativeFolder, "linux", "x86_64");