コード例 #1
0
        public override void Initialize()
        {
            Instance = this;

            InitWindowTitle();
            position =  new Rect(120,120,264,292);
            // initial fixed size
            minSize = new Vector2(264, 292);
        }
コード例 #2
0
        public override void Initialize()
        {
            Instance = this;

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