Tanoda
PackageDefinitionBuildMenuItems.cs
Go to the documentation of this file.
1/******************************************************************************
2 * Copyright (C) Ultraleap, Inc. 2011-2020. *
3 * *
4 * Use subject to the terms of the Apache License 2.0 available at *
5 * http://www.apache.org/licenses/LICENSE-2.0, or another agreement *
6 * between Ultraleap and you, your company or other organization. *
7 ******************************************************************************/
8
9using UnityEditor;
10
11namespace Leap.Unity.Packaging {
12
14
15 // Core
16 [MenuItem("Build/Core", priority = 50)]
18 PackageDefinition.BuildPackage("828092ac76618d349a96555173177a8f");
19 }
20
21 // Hands
22 [MenuItem("Build/Hands", priority = 50)]
24 PackageDefinition.BuildPackage("0270504144afc6248ba5d4114c5feddf");
25 }
26
27 // Interaction Engine
28 [MenuItem("Build/Interaction Engine", priority = 50)]
30 PackageDefinition.BuildPackage("60936e78f540d804ba4f2f4b509b1994");
31 }
32
33 // RealtimeGraph
34 [MenuItem("Build/RealtimeGraph", priority = 50)]
36 PackageDefinition.BuildPackage("b48faf9dc13e83b429b454fe72d8690a");
37 }
38 }
39}
40