File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ class CrossDoor
75
75
public:
76
76
void registerNodes(BT::BehaviorTreeFactory& factory);
77
77
78
- // SUCCESS if _door_open = = true
78
+ // SUCCESS if _door_open ! = true
79
79
BT::NodeStatus isDoorClosed();
80
80
81
81
// SUCCESS if _door_open == true
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ Let's consider this Behavior Tree.
28
28
29
29
<BehaviorTree ID =" MainTree" >
30
30
<Sequence >
31
- <Script script =" move_goal='1;2;3' " />
31
+ <Script code =" move_goal='1;2;3' " />
32
32
// highlight-start
33
33
<SubTree ID =" MoveRobot" target =" {move_goal}"
34
34
result =" {move_result}" />
@@ -41,10 +41,10 @@ Let's consider this Behavior Tree.
41
41
<Fallback >
42
42
<Sequence >
43
43
<MoveBase goal =" {target}" />
44
- <Script script =" result:='goal reached' " />
44
+ <Script code =" result:='goal reached' " />
45
45
</Sequence >
46
46
<ForceFailure >
47
- <Script script =" result:='error' " />
47
+ <Script code =" result:='error' " />
48
48
</ForceFailure >
49
49
</Fallback >
50
50
</BehaviorTree >
You can’t perform that action at this time.
0 commit comments