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

Definition at line 108 of file AVR_Core_ConsoleCommands.cs.

108  {
109  string remainder = string.Join(" ", args.Skip(1));
110  if (args[0] == "props")
111  {
112  AVR_DevConsole.print("Displaying Avr_Prop labeled prefabs with query: " + remainder);
113  SetSearch("l:Avr_Prop " + remainder);
114  }
115  if (args[0] == "ui")
116  {
117  AVR_DevConsole.print("Displaying Avr_Ui labeled prefabs with query: " + remainder);
118  SetSearch("l:Avr_Ui " + remainder);
119  }
120  }
static void SetSearch(string searchstring)