コード例 #1
0
 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);
 }
コード例 #2
0
 public void ShowEditWindow(EditorWindow editor, Container container)
 {
     ContainerWindowCreator.CreateEditWindow(editor, this, container);
 }