Closed Kaetera closed 3 years ago
Required Info:
This prevents to display in Groot any behavior tree that use a GoalUpdater node.
<root main_tree_to_execute="MainTree"> <BehaviorTree ID="MainTree"> <GoalUpdater input_goal="{goal}" output_goal="{updated_goal}"/> </BehaviorTree> </root>
The import succeed and the tree is displayed in Groot:
The import of the tree fails with the following message:
The import fails because this node is note listed in the palette shipped for Foxy. A simple fix is to add it in https://github.com/ros-planning/navigation2/blob/foxy-devel/nav2_behavior_tree/nav2_tree_nodes.xml as it has already been done in the mainbranch :)
main
<Decorator ID="GoalUpdater"> <input_port name="input_goal">Original goal in</input_port> <output_port name="output_goal">Output goal set by subscription</output_port> </Decorator>
A PR would be appreciated, thanks!
Done
Was the dpkg of nav2-behavior-tree containing this commit released?
Foxy is no longer a supported distribution.
Bug report
Required Info:
This prevents to display in Groot any behavior tree that use a GoalUpdater node.
Steps to reproduce issue
Expected behavior
The import succeed and the tree is displayed in Groot:
Actual behavior
The import of the tree fails with the following message:
Additional information
The import fails because this node is note listed in the palette shipped for Foxy. A simple fix is to add it in https://github.com/ros-planning/navigation2/blob/foxy-devel/nav2_behavior_tree/nav2_tree_nodes.xml as it has already been done in the
main
branch :)