BehaviorTree.SequenceNode.TransitionInternal C# (CSharp) Method

TransitionInternal() protected method

protected TransitionInternal ( object rInput ) : void
rInput object
return void
        protected override void TransitionInternal(object rInput)
        {
            if(CheckIndexSafe(mNodeIndexCur))
            {
                var rNode = mChildren[mNodeIndexCur];
                rNode.Transition(rInput);
            }
            mNodeIndexCur = BehaviorTreeNode._invalidChildNodeIndex;
        }