File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed File renamed without changes.
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ using namespace BT;
7
7
8
8
/* * This tutorial will teach you:
9
9
*
10
- * - The difference between Sequence and SequenceStar
10
+ * - The difference between Sequence and ReactiveSequence
11
11
*
12
12
* - How to create an asynchronous ActionNode (an action that is execute in
13
13
* its own thread).
@@ -111,14 +111,11 @@ Robot says: "mission started..."
111
111
[ MoveBase: STARTED ]. goal: x=1 y=2.0 theta=3.00
112
112
113
113
--- 2nd executeTick() ---
114
- [ Battery: OK ]
115
114
[ MoveBase: FINISHED ]
116
115
117
116
--- 3rd executeTick() ---
118
- [ Battery: OK ]
119
117
Robot says: "mission completed!"
120
118
121
-
122
119
------------ BUILDING A NEW TREE ------------
123
120
124
121
--- 1st executeTick() ---
@@ -127,9 +124,11 @@ Robot says: "mission started..."
127
124
[ MoveBase: STARTED ]. goal: x=1 y=2.0 theta=3.00
128
125
129
126
--- 2nd executeTick() ---
127
+ [ Battery: OK ]
130
128
[ MoveBase: FINISHED ]
131
129
132
130
--- 3rd executeTick() ---
131
+ [ Battery: OK ]
133
132
Robot says: "mission completed!"
134
133
135
134
*/
Original file line number Diff line number Diff line change 45
45
- " Tutorial 1: Create a Tree " : tutorial_01_first_tree.md
46
46
- " Tutorial 2: Basic Ports " : tutorial_02_basic_ports.md
47
47
- " Tutorial 3: Generic ports " : tutorial_03_generic_ports.md
48
- - " Tutorial 4: Sequences " : tutorial_04_sequence_star .md
48
+ - " Tutorial 4: Sequences " : tutorial_04_sequence .md
49
49
- " Tutorial 5: Subtrees and Loggers " : tutorial_05_subtrees.md
50
50
- " Tutorial 6: Ports remapping " : tutorial_06_subtree_ports.md
51
51
- " Tutorial 7: Wrap legacy code " : tutorial_07_legacy.md
Original file line number Diff line number Diff line change @@ -33,7 +33,8 @@ BehaviorTreeFactory::BehaviorTreeFactory()
33
33
registerNodeType<WhileDoElseNode>(" WhileDoElse" );
34
34
35
35
registerNodeType<InverterNode>(" Inverter" );
36
- registerNodeType<RetryNode>(" RetryUntilSuccesful" );
36
+ registerNodeType<RetryNodeTypo>(" RetryUntilSuccesful" ); // typo but back compatibility
37
+ registerNodeType<RetryNode>(" RetryUntilSuccessful" ); // correct one
37
38
registerNodeType<KeepRunningUntilFailureNode>(" KeepRunningUntilFailure" );
38
39
registerNodeType<RepeatNode>(" Repeat" );
39
40
registerNodeType<TimeoutNode<>>(" Timeout" );
You can’t perform that action at this time.
0 commit comments