VR Development Framework
v 1.0.0
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Events Pages
static void AVR.UEditor.Core.PackageBuilder.BuildPackager ( )
inlinestatic

Definition at line 16 of file PackageBuilder.cs.

17  {
18  #if AVR_CORE
19  PackageQueue.Add("com.avr.core");
20  #endif
21  #if AVR_AVATAR
22  PackageQueue.Add("com.avr.avatar");
23  #endif
24  #if AVR_MOTION
25  PackageQueue.Add("com.avr.motion");
26  #endif
27  #if AVR_PHYS
28  PackageQueue.Add("com.avr.phys");
29  #endif
30  #if AVR_UI
31  PackageQueue.Add("com.avr.ui");
32  #endif
33  #if AVR_NET
34  PackageQueue.Add("com.avr.net");
35  #endif
36 
37  Debug.Log("Started building "+PackageQueue.Count+" packages.");
38 
39  EditorApplication.update += UpdateBuildProcess;
40  }