14 lines
326 B
C#
14 lines
326 B
C#
using XNodeEditor;
|
|
|
|
namespace Stary.Evo.StoryEditor.Editor
|
|
{
|
|
[CustomNodeGraphEditor(typeof(ScriptGraph))]
|
|
public class ScriptGraphEditor : NodeGraphEditor
|
|
{
|
|
public override void OnOpen()
|
|
{
|
|
base.OnOpen();
|
|
NodeEditorWindow.current.panOffset = new(-350, -75);
|
|
}
|
|
}
|
|
} |