コード例 #1
0
ファイル: Selector.cs プロジェクト: q3640850400/Dream1
            protected override EBTStatus update(Agent pAgent, EBTStatus childStatus)
            {
                Debug.Check(this.m_activeChildIndex < this.m_children.Count);
                Selector node = this.m_node as Selector;

                return(node.SelectorUpdate(pAgent, childStatus, ref this.m_activeChildIndex, this.m_children));
            }
コード例 #2
0
        protected override EBTStatus update(Agent pAgent, EBTStatus childStatus)
        {
            Debug.Check(this.m_node is Selector);
            Selector node = this.m_node as Selector;

            EBTStatus s = node.SelectorUpdate(pAgent, childStatus, ref this.m_activeChildIndex, this.m_children);

            return s;
        }