Ejemplo n.º 1
0
 /// <summary>
 /// Starts the process of getting the main window and doing something.
 /// </summary>
 /// <param name="get"></param>
 /// <returns></returns>
 public static HUMEditorTypes.Data.GetMain Main(this HUMEditorTypes.Data.Get get)
 {
     return(new HUMEditorTypes.Data.GetMain(get));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Gets an editor type via reflection.
 /// </summary>
 public static Type EditorType(this HUMEditorTypes.Data.Get get, string typeFullName)
 {
     return(Assembly.GetAssembly(typeof(EditorWindow)).GetType(typeFullName, true, false));
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Starts the process of getting a host view from a window and doing something with it.
 /// </summary>
 public static HUMEditorTypes.Data.GetHostView HostView(this HUMEditorTypes.Data.Get get, EditorWindow window)
 {
     return(new HUMEditorTypes.Data.GetHostView(get, window));
 }