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

30 行
581 B

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