public static ActionGraphValidationUpdateEvent GetPooled(ActionGraphView graphView, bool isValid, IEventHandler target) { var evt = EventBase <ActionGraphValidationUpdateEvent> .GetPooled(); evt.bubbles = true; evt.target = target; evt.graphView = graphView; evt.isValid = isValid; return(evt); }
public abstract GraphElement CreateNode(ActionGraphView graphView, ActionGraphGlobalSettings settings, Rect layout, string guid);