Skip to content

Commit

Permalink
Packaging.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
i-saint committed Jan 19, 2018
1 parent 1ac4d93 commit 3039d9d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions AlembicImporter/Assets/Packaging.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,16 @@
using UnityEditor;


public class AlembicImporterPackaging
public class AlembicForUnityPackaging
{
[MenuItem("Assets/Make AlembicImporter.unitypackage")]
[MenuItem("Assets/Make AlembicForUnity.unitypackage")]
public static void MakePackage_Alembic()
{
string[] files = new string[]
{
"Assets/UTJ",
"Assets/StreamingAssets/UTJ",
};
AssetDatabase.ExportPackage(files, "AlembicImporter.unitypackage", ExportPackageOptions.Recurse);
AssetDatabase.ExportPackage(files, "AlembicForUnity.unitypackage", ExportPackageOptions.Recurse);
}
}
#endif // UNITY_EDITOR

0 comments on commit 3039d9d

Please sign in to comment.