Skip to content

Commit

Permalink
remove Start Scene
Browse files Browse the repository at this point in the history
  • Loading branch information
homuler committed Sep 1, 2023
1 parent fc8aaf6 commit bfc2310
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 483 deletions.
3 changes: 1 addition & 2 deletions Assets/MediaPipeUnity/Editor/PackageExporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@ public static void Export()

var pluginAssets = EnumerateAssets(Path.Combine("Packages", "com.github.homuler.mediapipe"))
.Append(Path.Combine("Packages", "com.github.homuler.mediapipe", "Runtime", "Plugins", "iOS", "MediaPipeUnity.framework"));
var sampleAssets = EnumerateAssets(Path.Combine("Assets", "MediaPipeUnity", "Samples"), new string[] { ".cs", ".unity" })
.Where(x => Path.GetFileName(x) != "Start Scene.unity"); // exclude the 'Start Scene'
var sampleAssets = EnumerateAssets(Path.Combine("Assets", "MediaPipeUnity", "Samples"), new string[] { ".cs", ".unity" });
var tutorialAssets = EnumerateAssets(Path.Combine("Assets", "MediaPipeUnity", "Tutorial")); // export all the files
var assets = pluginAssets.Concat(sampleAssets).Concat(tutorialAssets).ToArray();

Expand Down
Loading

0 comments on commit bfc2310

Please sign in to comment.