Unable to pass int type values between nodes , using Behavior tree 4.X #763
Unanswered
IshanBhatnagar14
asked this question in
Q&A
Replies: 1 comment
-
Because the XML is wrong. This is the correct one <?xml version="1.0" encoding="UTF-8"?>
<root BTCPP_format="3">
<BehaviorTree ID="ReactiveBehaviorTree">
<ReactiveSequence>
<CheckZValuePositive60 cycle="{cycle_key}"/>
<CheckWireValue input_cycle_="{cycle_key}"/>
</ReactiveSequence>
</BehaviorTree>
</root> |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
@facontidavide @HenrikNilssonCode
I have CheckZValuePositive.h Class , which has an output port named "cycle" which stores increasing value of int type cycle_
Also have another class CheckWireValue.h , which has an input port "input_cycle_" ,
Linking the port in main.cpp
I am facing problem in linking output port of one class to input port of another class.
Beta Was this translation helpful? Give feedback.
All reactions