您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
19 行
502 B
19 行
502 B
using UnityEngine.RMGUI;
|
|
|
|
namespace RMGUI.GraphView.Demo
|
|
{
|
|
[StyleSheet("Assets/Editor/Demo/Views/SimpleContentView.uss")]
|
|
public class SimpleContentView : GraphView
|
|
{
|
|
public SimpleContentView()
|
|
{
|
|
AddManipulator(new ContentZoomer());
|
|
AddManipulator(new ContentDragger());
|
|
AddManipulator(new RectangleSelector());
|
|
AddManipulator(new SelectionDragger());
|
|
AddManipulator(new ClickSelector());
|
|
|
|
AddDecorator(new GridBackground(contentViewContainer));
|
|
}
|
|
}
|
|
}
|