From b148a6f0084090907c6681d1b3677567fcebe7a7 Mon Sep 17 00:00:00 2001 From: hiroj Date: Wed, 20 May 2020 20:13:12 +0900 Subject: [PATCH] Changed to include adf --- .../DevOnly/Editor/VRMExportUnityPackage.cs | 25 +------------------ 1 file changed, 1 insertion(+), 24 deletions(-) diff --git a/Assets/VRM/UniVRM/DevOnly/Editor/VRMExportUnityPackage.cs b/Assets/VRM/UniVRM/DevOnly/Editor/VRMExportUnityPackage.cs index 2efa03a14..d0472959a 100644 --- a/Assets/VRM/UniVRM/DevOnly/Editor/VRMExportUnityPackage.cs +++ b/Assets/VRM/UniVRM/DevOnly/Editor/VRMExportUnityPackage.cs @@ -180,30 +180,7 @@ namespace VRM.DevOnly.PackageExporter string[] fileNames ) { - CreateUnityPackageWithoutAsmDefs(outputDir, name, containsPath, basePath, fileNames); - CreateUnityPackageOnlyWithAsmDefs(outputDir, name, containsPath, basePath, fileNames); - } - - public static void CreateUnityPackageWithoutAsmDefs( - string outputDir, - string name, - string[] containsPath, - string basePath, - string[] fileNames - ) - { - CreateUnityPackageStandalone(outputDir, name, containsPath, basePath, fileNames, null, new string[] {".asmdef"}); - } - - public static void CreateUnityPackageOnlyWithAsmDefs( - string outputDir, - string name, - string[] containsPath, - string basePath, - string[] fileNames - ) - { - CreateUnityPackageStandalone(outputDir, name + ".asmdef", containsPath, basePath, fileNames, new string[] {".asmdef"}, null); + CreateUnityPackageStandalone(outputDir, name, containsPath, basePath, fileNames, null, null); } public static void CreateUnityPackageStandalone(