MCPcopy Create free account
hub / github.com/BehaviorTree/BehaviorTree.CPP / haltNode

Method haltNode

src/tree_node.cpp:159–169  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

157}
158
159void TreeNode::haltNode()
160{
161 halt();
162
163 const auto& parse_executor = _p->post_parsed[size_t(PostCond::ON_HALTED)];
164 if(parse_executor)
165 {
166 Ast::Environment env = { config().blackboard, config().enums };
167 parse_executor(env);
168 }
169}
170
171void TreeNode::setStatus(NodeStatus new_status)
172{

Callers 4

resetChildrenMethod · 0.80
haltChildMethod · 0.80
resetChildMethod · 0.80
haltTreeMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected