AssetBundleGraph.NodeEvent.NodeEvent C# (CSharp) Method

NodeEvent() public method

public NodeEvent ( EventType type, NodeGUI node, Vector2 localMousePos, ConnectionPointData point ) : UnityEngine
type EventType
node NodeGUI
localMousePos UnityEngine.Vector2
point ConnectionPointData
return UnityEngine
        public NodeEvent(EventType type, NodeGUI node, Vector2 localMousePos, ConnectionPointData point)
        {
            this.eventType = type;
            this.eventSourceNode = node;
            this.point = point;
            this.globalMousePosition = new Vector2(localMousePos.x + node.GetX(), localMousePos.y + node.GetY());
        }

Same methods

NodeEvent::NodeEvent ( EventType type ) : UnityEngine
NodeEvent::NodeEvent ( EventType type, string message ) : UnityEngine
NodeEvent