From df9f4ac07e8a733fb6671633bbdc4e4e1169c0a7 Mon Sep 17 00:00:00 2001 From: ousttrue Date: Mon, 18 Oct 2021 14:19:08 +0900 Subject: [PATCH] =?UTF-8?q?unitypackage=E3=81=AE=E5=88=86=E3=81=91?= =?UTF-8?q?=E6=96=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * UniVRM * UnivRM_Samples * VRM * VRM_Samples の4パッケージとする --- Assets/VRM/Editor/VRMExportUnityPackage.cs | 26 +++++++++++++++------- 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/Assets/VRM/Editor/VRMExportUnityPackage.cs b/Assets/VRM/Editor/VRMExportUnityPackage.cs index fa7059664..b28bd8711 100644 --- a/Assets/VRM/Editor/VRMExportUnityPackage.cs +++ b/Assets/VRM/Editor/VRMExportUnityPackage.cs @@ -190,28 +190,38 @@ namespace VRM.DevOnly.PackageExporter { { var packages = new[]{ - // UniGLTF + VRMShaders - new PackageInfo("UniGLTF_VRMShaders") - { - List = new []{ - new GlobList("Assets/VRMShaders"), - new GlobList("Assets/UniGLTF"), - } - }, // VRM new PackageInfo("UniVRM") { List = new []{ + new GlobList("Assets/VRMShaders"), + new GlobList("Assets/UniGLTF"), new GlobList("Assets/VRM"), } }, + // VRM_Samples + new PackageInfo("UniVRM_Samples") + { + List = new []{ + new GlobList("Assets/VRM_Samples"), + } + }, // VRM-1.0 new PackageInfo("VRM") { List = new []{ + new GlobList("Assets/VRMShaders"), + new GlobList("Assets/UniGLTF"), new GlobList("Assets/VRM10"), } }, + // VRM-1.0_Samples + new PackageInfo("VRM_Samples") + { + List = new []{ + new GlobList("Assets/VRM10_Samples"), + } + }, }; foreach (var package in packages) {