-
-
Notifications
You must be signed in to change notification settings - Fork 615
Graph Editors
Thor Brigsted edited this page Jan 30, 2018
·
18 revisions
[CustomNodeGraphEditor(typeof(MyGraph))]
public class MyGraphEditor : NodeGraphEditor {
}
- Add a unique EditorPrefs key to the attribute
[CustomNodeGraphEditor(typeof(MyGraph), "MyGraph.Settings")]
- Overload GetDefaultPreferences(); to set default preferences
public override NodeEditorPreferences.Settings GetDefaultPreferences() {
return new NodeEditorPreferences.Settings() {
gridBgColor = Color.black,
gridLineColor = Color.white
};
}