public override void Initialize()
        {
            Instance = this;

            InitWindowTitle();
            position =  new Rect(120,120,264,292);
            // initial fixed size
            minSize = new Vector2(264, 292);
        }
Ejemplo n.º 2
0
        public override void Initialize()
        {
            Instance = this;

            InitWindowTitle();
            position = new Rect(120, 120, 264, 292);
            // initial fixed size
            minSize = new Vector2(264, 292);
        }
 public static void Init()
 {
     // Get existing open window or if none, make a new one:
     Instance = (ProjectToolsUI)EditorWindow.GetWindow (typeof (ProjectToolsUI));
 }
 public static void ReSaveAllFSMsInBuild()
 {
     ProjectToolsUI.Init();
     ProjectToolsUI.Instance.DoResaveAllFsmsInBuild();
 }
Ejemplo n.º 5
0
 static public void Init()
 {
     // Get existing open window or if none, make a new one:
     Instance = (ProjectToolsUI)EditorWindow.GetWindow(typeof(ProjectToolsUI));
 }