-
-
Notifications
You must be signed in to change notification settings - Fork 247
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
subtree sequence #8
Comments
Thanks for reporting. I will add the unit test and fix the issue tomorrow |
I can't see what is wrong based on your description. Can you share an XML file to reproduce this? The attached file seems to work just fine. |
Hi Davide, Please see the attached xml and groot picture. Please notice that both the subtree and the sequence node are in wrong order. It seems to be related to the name or string I give them. And if I change the name sometimes the order is correct. But the one I send is wrong all the time for my machine. |
Ok, I see. the error can be reproduced easily with the simplified tree <BehaviorTree ID="PickingItem">
<Action ID = "AdjustTCPOrientation"/>
</BehaviorTree>
<BehaviorTree ID="MoveToPredefinedPoint">
<Action ID = "LinearMove"/>
</BehaviorTree>
<BehaviorTree ID="MainTree">
<Sequence name="move from bin A to bin B">
<SubTree ID = "MoveToPredefinedPoint"/>
<SubTree ID = "PickingItem"/>
</Sequence>
</BehaviorTree>
</root> I will fix it today. |
- Added EditorFlowScene::createNodeAtPos to simplify code - fixed the placement of nodes in GraphicContainer::recursiveLoadStep - visualize instanceName is different than registrationName
Hi Davide,
I find a new issue of the groot. If I have more than one sub-tree for a sequence, the groot seems to put the subtree in the wrong order.
The text was updated successfully, but these errors were encountered: