Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/BT_basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,13 @@ __isDoorOpen__ is therefore equivalent to

"Is the door closed?".

The node __Retry__ will repeat ticking the child up to N times (3 in this case)
The node __Retry__ will repeat ticking the child up to __num_attempts__ times (5 in this case)
if the child returns FAILURE.

__Apparently__, the branch on the right side means:

If the door is closed, then try to open it.
Try up to 3 times, otherwise give up and return FAILURE.
Try up to 5 times, otherwise give up and return FAILURE.

But...

Expand Down