コード例 #1
0
        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);
        }
コード例 #2
0
ファイル: NodeData.cs プロジェクト: NeroWeNeed/action-graph
 public abstract GraphElement CreateNode(ActionGraphView graphView, ActionGraphGlobalSettings settings, Rect layout, string guid);