Exemple #1
0
        void CreateSMAction(IFlow flow, IFlowNode from, IFlowNode to, int beginIndex, int endIndex)
        {
            var fa = flow.CreateAction(from, to) as StateMachine.CIIPXpoTransition;

            fa.BeginItemPointIndex = beginIndex;
            fa.EndItemPointIndex   = endIndex;
        }
Exemple #2
0
        void CreateAction(IFlow flow, IFlowNode from, IFlowNode to, int beginIndex, int endIndex)
        {
            var fa = flow.CreateAction(from, to) as FlowAction;

            fa.Created();
            fa.BeginItemPointIndex = beginIndex;
            fa.EndItemPointIndex   = endIndex;
        }