| 12345678910111213141516171819202122 |
- namespace BehaviorTree
- {
- [NodeAttribute(NodeType.Sequence, typeof(Sequence))]
- internal class Sequence: Node
- {
- public Sequence(NodeConfig config): base(config)
- {
- }
- public override bool Run(BlackBoard blackBoard)
- {
- foreach (var child in this.children)
- {
- if (!child.Run(blackBoard))
- {
- return false;
- }
- }
- return true;
- }
- }
- }
|