直接上图
using UnityEngine;
using UnityEditor;
using System.Collections;
public class L004Window : EditorWindow
{
static L004Window instance = null;
public static void OpenWindow()
{
if (instance == null)
{
instance = (L004Window)ScriptableObject.CreateInstance<L004Window>();
instance.position = new Rect(500, 300, 600, 400);
}
instance.ShowPopup();
instance.Focus();
}
void Update()
{
if (EditorWindow.focusedWindow != this) this.Close();
}
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。