Exemple #1
0
        public NodeActionCommand(
            Action <T> action,
            IUniNode node,
            string name,
            PortIO direction = PortIO.Input)
        {
            var portInfo = node.UpdatePortValue(name, direction);

            portAction = new PortActionCommand <T>(action, portInfo);
        }