VR Development Framework
v 1.0.0
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Events Pages
static void AVR.Core.AVR_Core_ConsoleCommands.print_packages ( )
inlinestaticprivate

Definition at line 86 of file AVR_Core_ConsoleCommands.cs.

86  {
87  AVR_DevConsole.success("Installed packages:");
88  #if AVR_CORE
89  AVR_DevConsole.success("> AVR_CORE");
90  #endif
91  #if AVR_AVATAR
92  AVR_DevConsole.success("> AVR_AVATAR");
93  #endif
94  #if AVR_MOTION
95  AVR_DevConsole.success("> AVR_MOTION");
96  #endif
97  #if AVR_PHYS
98  AVR_DevConsole.success("> AVR_PHYS");
99  #endif
100  #if AVR_UI
101  AVR_DevConsole.success("> AVR_UI");
102  #endif
103  #if AVR_NET
104  AVR_DevConsole.success("> AVR_NET");
105  #endif
106  }