Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VRM-1.0 の unitypackage も作成する #1132

Merged
merged 1 commit into from
Aug 6, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 18 additions & 30 deletions Assets/VRM/Editor/VRMExportUnityPackage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,6 @@ public static bool EndsWithAndMeta(this string str, string terminator)

public static class VRMExportUnityPackage
{
const string DATE_FORMAT = "yyyyMMdd";

static string GetDesktop()
{
return Environment.GetFolderPath(Environment.SpecialFolder.Desktop) + "/VRM";
}

static string GetProjectRoot()
{
return Path.GetFullPath(Application.dataPath + "/..");
Expand Down Expand Up @@ -141,26 +134,6 @@ static void CreateUnityPackageWithoutBuild()
CreateUnityPackages(folder);
}

public static void CreateUnityPackageWithBuild()
{
var folder = GetProjectRoot();
if (!Directory.Exists(folder))
{
Directory.CreateDirectory(folder);
}

if (!BuildTestScene())
{
Debug.LogError("Failed to build test scenes");
}
CreateUnityPackages(folder);
}

public static void CreateUnityPackage()
{
CreateUnityPackages(Path.GetFullPath(Path.Combine(Application.dataPath, "..")));
}

public class GlobList
{
public readonly string[] Files;
Expand Down Expand Up @@ -198,21 +171,36 @@ public static void CreateUnityPackages(string outputDir)
// UniVRM and sub packages
{
var packages = new[]{
new PackageInfo("UniVRM")
new PackageInfo("UniVRM0X")
{
List = new []{
new GlobList("Assets/VRM"),
new GlobList("Assets/VRMShaders"),
new GlobList("Assets/MeshUtility"),
new GlobList("Assets/UniGLTF"),
}
},
new PackageInfo("UniVRM-samples")
new PackageInfo("UniVRM0X-samples")
{
List = new[]{
new GlobList("Assets/VRM.Samples"),
new GlobList("Assets/StreamingAssets/VRM.Samples"),
}
},
new PackageInfo("UniVRM10")
{
List = new []{
new GlobList("Assets/VRM10"),
new GlobList("Assets/VRMShaders"),
new GlobList("Assets/UniGLTF"),
}
},
new PackageInfo("UniVRM10-samples")
{
List = new[]{
new GlobList("Assets/VRM10.Samples"),
new GlobList("Assets/UniGLTF.Samples"), // look dev resources
new GlobList("Assets/StreamingAssets/VRM.Samples"),
}
}
};
foreach (var package in packages)
Expand Down