private static ContainerWindowCreator DoStyle(EditorWindow owner, PrefabDataBase data, Container tipe, ContainerWindowCreator window) { window.maxSize = new Vector2(300, 300); window.minSize = window.maxSize; window.container = tipe; window.dataBase = data; window.createObject = window.CreateObject; window.Owner = owner; window.ShowUtility(); return(window); }
public void ShowEditWindow(EditorWindow editor, Container container) { ContainerWindowCreator.CreateEditWindow(editor, this, container); }