From 4e16d9c91306f9934380598e6ea46f2d0e035bbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Thu, 19 Apr 2018 19:44:55 +0200 Subject: [PATCH] Removed interactive mode from asset importer to allow for multiple assets to get imported --- MLAPI-Editor/MLAPIEditor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MLAPI-Editor/MLAPIEditor.cs b/MLAPI-Editor/MLAPIEditor.cs index ff0ab69..8b1eb36 100644 --- a/MLAPI-Editor/MLAPIEditor.cs +++ b/MLAPI-Editor/MLAPIEditor.cs @@ -113,7 +113,7 @@ public class MLAPIEditor : EditorWindow File.WriteAllBytes(Application.dataPath + "/MLAPI/Lib/" + releases[index].assets[i].name, www.bytes); if (releases[index].assets[i].name.EndsWith(".unitypackage")) - AssetDatabase.ImportPackage(Application.dataPath + "/MLAPI/Lib/" + releases[index].assets[i].name, true); + AssetDatabase.ImportPackage(Application.dataPath + "/MLAPI/Lib/" + releases[index].assets[i].name, false); } EditorPrefs.SetString("MLAPI_version", releases[index].tag_name);