示例#1
0
 /// <summary>
 /// Hide this instance.
 /// </summary>
 public static void Hide()
 {
     if (window != null)
     {
         window.Close();
         window = null;
     }
 }
示例#2
0
        /// <summary>
        /// Open the specified pos.
        /// </summary>
        public static void Open()
        {
            float width  = 860;
            float height = Screen.currentResolution.height - 100;
            float x      = Screen.currentResolution.width - width;
            float y      = 25;
            Rect  size   = new Rect(x, y, width, height);

            if (window == null)
            {
                window = (SceneFloydDisEditorWindow)EditorWindow.GetWindowWithRect(typeof(SceneFloydDisEditorWindow), size, true, "城镇寻路编辑器");
            }
            window.Show();
            window.position = size;
            getData();
        }