您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

30 行
579 B

using UnityEditor;
using UnityEngine.RMGUI;
namespace RMGUI.GraphView.Demo
{
public class IMGUISampleViewWindow : EditorWindow
{
[MenuItem("Window/GraphView Demo/IMGUISampleView")]
public static void ShowWindow()
{
GetWindow<IMGUISampleViewWindow>();
}
void OnEnable()
{
var view = new SimpleContentView
{
name = "theView",
dataSource = CreateInstance<IMGUISampleViewData>()
};
view.StretchToParentSize();
rootVisualContainer.AddChild(view);
}
void OnDisable()
{
rootVisualContainer.ClearChildren();
}
}
}