Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c979857

Browse files
author
Davide Faconti
committed
Deployed 6e5f530 with MkDocs version: 1.0.4
1 parent d0b66ad commit c979857

File tree

18 files changed

+258
-170
lines changed

18 files changed

+258
-170
lines changed

404.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@
6060

6161

6262
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin>
63-
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700|Roboto+Mono">
64-
<style>body,input{font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono","Courier New",Courier,monospace}</style>
63+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Ubuntu:300,400,400i,700|Roboto+Mono">
64+
<style>body,input{font-family:"Ubuntu","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono","Courier New",Courier,monospace}</style>
6565

6666

6767
<link rel="stylesheet" href="/assets/fonts/material-icons.css">
@@ -318,8 +318,8 @@
318318

319319

320320
<li class="md-nav__item">
321-
<a href="/BT_basics/" title="The Basics" class="md-nav__link">
322-
The Basics
321+
<a href="/BT_basics/" title="Introduction" class="md-nav__link">
322+
Introduction
323323
</a>
324324
</li>
325325

@@ -390,8 +390,8 @@
390390

391391

392392
<li class="md-nav__item">
393-
<a href="/getting_started/" title="Main concepts" class="md-nav__link">
394-
Main concepts
393+
<a href="/getting_started/" title="Getting started" class="md-nav__link">
394+
Getting started
395395
</a>
396396
</li>
397397

@@ -450,8 +450,8 @@
450450

451451

452452
<li class="md-nav__item">
453-
<a href="/tutorial_E_plugins/" title="Create Plugins" class="md-nav__link">
454-
Create Plugins
453+
<a href="/tutorial_E_plugins/" title="Create a Plugin" class="md-nav__link">
454+
Create a Plugin
455455
</a>
456456
</li>
457457

BT_basics/index.html

Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141

4242

43-
<title>The Basics - BehaviorTree.CPP</title>
43+
<title>Introduction - BehaviorTree.CPP</title>
4444

4545

4646

@@ -60,8 +60,8 @@
6060

6161

6262
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin>
63-
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700|Roboto+Mono">
64-
<style>body,input{font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono","Courier New",Courier,monospace}</style>
63+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Ubuntu:300,400,400i,700|Roboto+Mono">
64+
<style>body,input{font-family:"Ubuntu","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono","Courier New",Courier,monospace}</style>
6565

6666

6767
<link rel="stylesheet" href="../assets/fonts/material-icons.css">
@@ -128,7 +128,7 @@
128128
BehaviorTree.CPP
129129
</span>
130130
<span class="md-header-nav__topic">
131-
The Basics
131+
Introduction
132132
</span>
133133

134134

@@ -335,11 +335,11 @@
335335

336336

337337
<label class="md-nav__link md-nav__link--active" for="__toc">
338-
The Basics
338+
Introduction
339339
</label>
340340

341-
<a href="./" title="The Basics" class="md-nav__link md-nav__link--active">
342-
The Basics
341+
<a href="./" title="Introduction" class="md-nav__link md-nav__link--active">
342+
Introduction
343343
</a>
344344

345345

@@ -477,8 +477,8 @@
477477

478478

479479
<li class="md-nav__item">
480-
<a href="../getting_started/" title="Main concepts" class="md-nav__link">
481-
Main concepts
480+
<a href="../getting_started/" title="Getting started" class="md-nav__link">
481+
Getting started
482482
</a>
483483
</li>
484484

@@ -537,8 +537,8 @@
537537

538538

539539
<li class="md-nav__item">
540-
<a href="../tutorial_E_plugins/" title="Create Plugins" class="md-nav__link">
541-
Create Plugins
540+
<a href="../tutorial_E_plugins/" title="Create a Plugin" class="md-nav__link">
541+
Create a Plugin
542542
</a>
543543
</li>
544544

@@ -703,9 +703,7 @@ <h3 id="sequence">Sequence</h3>
703703
<li>If all the children return SUCCESS, then the Sequence returns SUCCESS too.</li>
704704
</ul>
705705
<details class="warning"><summary>Exercise: find the bug! Expand to read the answer.</summary><p>If the action <strong>GrabBeer</strong> fails, the door of the
706-
fridge would remain open, since the last action <strong>CloseDoor</strong> is skipped.</p>
707-
</details>
708-
<h3 id="decorators">Decorators</h3>
706+
fridge would remain open, since the last action <strong>CloseDoor</strong> is skipped.</p></details><h3 id="decorators">Decorators</h3>
709707
<p>The goal of a <a href="../DecoratorNode/">DecoratorNode</a> is either to transform the result it received
710708
from the child, to terminate the child,
711709
or repeat ticking of the child, depending on the type of Decorator.</p>
@@ -729,9 +727,7 @@ <h3 id="decorators">Decorators</h3>
729727
<p><strong>But</strong> there is an error. Can you find it?</p>
730728
<details class="warning"><summary>Exercise: find the bug! Expand to read the answer.</summary><p>If <strong>DoorOpen</strong> returns FAILURE, we have the desired behaviour.
731729
But if it returns SUCCESS, the left branch fails and the entire Sequence
732-
is interrupted. </p>
733-
</details>
734-
<h3 id="fallback">Fallback</h3>
730+
is interrupted. </p></details><h3 id="fallback">Fallback</h3>
735731
<p><a href="../FallbackNode/">FallbackNodes</a>, known also as <strong>"Selector"</strong>,
736732
are nodes that can express, as the name suggests, fallback strategies,
737733
ie. what to do next if a child returns FAILURE.</p>

BlackBoard/index.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@
6060

6161

6262
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin>
63-
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700|Roboto+Mono">
64-
<style>body,input{font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono","Courier New",Courier,monospace}</style>
63+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Ubuntu:300,400,400i,700|Roboto+Mono">
64+
<style>body,input{font-family:"Ubuntu","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono","Courier New",Courier,monospace}</style>
6565

6666

6767
<link rel="stylesheet" href="../assets/fonts/material-icons.css">
@@ -318,8 +318,8 @@
318318

319319

320320
<li class="md-nav__item">
321-
<a href="../BT_basics/" title="The Basics" class="md-nav__link">
322-
The Basics
321+
<a href="../BT_basics/" title="Introduction" class="md-nav__link">
322+
Introduction
323323
</a>
324324
</li>
325325

@@ -390,8 +390,8 @@
390390

391391

392392
<li class="md-nav__item">
393-
<a href="../getting_started/" title="Main concepts" class="md-nav__link">
394-
Main concepts
393+
<a href="../getting_started/" title="Getting started" class="md-nav__link">
394+
Getting started
395395
</a>
396396
</li>
397397

@@ -450,8 +450,8 @@
450450

451451

452452
<li class="md-nav__item">
453-
<a href="../tutorial_E_plugins/" title="Create Plugins" class="md-nav__link">
454-
Create Plugins
453+
<a href="../tutorial_E_plugins/" title="Create a Plugin" class="md-nav__link">
454+
Create a Plugin
455455
</a>
456456
</li>
457457

DecoratorNode/index.html

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@
6060

6161

6262
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin>
63-
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700|Roboto+Mono">
64-
<style>body,input{font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono","Courier New",Courier,monospace}</style>
63+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Ubuntu:300,400,400i,700|Roboto+Mono">
64+
<style>body,input{font-family:"Ubuntu","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono","Courier New",Courier,monospace}</style>
6565

6666

6767
<link rel="stylesheet" href="../assets/fonts/material-icons.css">
@@ -326,8 +326,8 @@
326326

327327

328328
<li class="md-nav__item">
329-
<a href="../BT_basics/" title="The Basics" class="md-nav__link">
330-
The Basics
329+
<a href="../BT_basics/" title="Introduction" class="md-nav__link">
330+
Introduction
331331
</a>
332332
</li>
333333

@@ -464,8 +464,8 @@
464464

465465

466466
<li class="md-nav__item">
467-
<a href="../getting_started/" title="Main concepts" class="md-nav__link">
468-
Main concepts
467+
<a href="../getting_started/" title="Getting started" class="md-nav__link">
468+
Getting started
469469
</a>
470470
</li>
471471

@@ -524,8 +524,8 @@
524524

525525

526526
<li class="md-nav__item">
527-
<a href="../tutorial_E_plugins/" title="Create Plugins" class="md-nav__link">
528-
Create Plugins
527+
<a href="../tutorial_E_plugins/" title="Create a Plugin" class="md-nav__link">
528+
Create a Plugin
529529
</a>
530530
</li>
531531

@@ -680,13 +680,13 @@ <h2 id="retrynode">RetryNode</h2>
680680
</a>
681681

682682

683-
<a href="../getting_started/" title="Main concepts" class="md-flex md-footer-nav__link md-footer-nav__link--next" rel="next">
683+
<a href="../getting_started/" title="Getting started" class="md-flex md-footer-nav__link md-footer-nav__link--next" rel="next">
684684
<div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title">
685685
<span class="md-flex__ellipsis">
686686
<span class="md-footer-nav__direction">
687687
Next
688688
</span>
689-
Main concepts
689+
Getting started
690690
</span>
691691
</div>
692692
<div class="md-flex__cell md-flex__cell--shrink">

FallbackNode/index.html

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@
6060

6161

6262
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin>
63-
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700|Roboto+Mono">
64-
<style>body,input{font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono","Courier New",Courier,monospace}</style>
63+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Ubuntu:300,400,400i,700|Roboto+Mono">
64+
<style>body,input{font-family:"Ubuntu","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono","Courier New",Courier,monospace}</style>
6565

6666

6767
<link rel="stylesheet" href="../assets/fonts/material-icons.css">
@@ -326,8 +326,8 @@
326326

327327

328328
<li class="md-nav__item">
329-
<a href="../BT_basics/" title="The Basics" class="md-nav__link">
330-
The Basics
329+
<a href="../BT_basics/" title="Introduction" class="md-nav__link">
330+
Introduction
331331
</a>
332332
</li>
333333

@@ -443,8 +443,8 @@
443443

444444

445445
<li class="md-nav__item">
446-
<a href="../getting_started/" title="Main concepts" class="md-nav__link">
447-
Main concepts
446+
<a href="../getting_started/" title="Getting started" class="md-nav__link">
447+
Getting started
448448
</a>
449449
</li>
450450

@@ -503,8 +503,8 @@
503503

504504

505505
<li class="md-nav__item">
506-
<a href="../tutorial_E_plugins/" title="Create Plugins" class="md-nav__link">
507-
Create Plugins
506+
<a href="../tutorial_E_plugins/" title="Create a Plugin" class="md-nav__link">
507+
Create a Plugin
508508
</a>
509509
</li>
510510

@@ -637,9 +637,7 @@ <h2 id="fallbacknode">FallbackNode</h2>
637637
<span class="n">HaltAllChildren</span><span class="p">();</span>
638638
<span class="k">return</span> <span class="n">FAILURE</span><span class="p">;</span>
639639
</pre></div>
640-
641-
</details>
642-
<h2 id="fallbackstarnode">FallbackStarNode</h2>
640+
</details><h2 id="fallbackstarnode">FallbackStarNode</h2>
643641
<p>If a child returns <strong>RUNNING</strong>:</p>
644642
<ul>
645643
<li>FallbackStarNode returns <strong>RUNNING</strong>. </li>
@@ -674,7 +672,6 @@ <h2 id="fallbackstarnode">FallbackStarNode</h2>
674672
<span class="n">HaltAllChildren</span><span class="p">();</span>
675673
<span class="k">return</span> <span class="n">FAILURE</span><span class="p">;</span>
676674
</pre></div>
677-
678675
</details>
679676

680677

NodeParameters/index.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@
6060

6161

6262
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin>
63-
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700|Roboto+Mono">
64-
<style>body,input{font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono","Courier New",Courier,monospace}</style>
63+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Ubuntu:300,400,400i,700|Roboto+Mono">
64+
<style>body,input{font-family:"Ubuntu","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono","Courier New",Courier,monospace}</style>
6565

6666

6767
<link rel="stylesheet" href="../assets/fonts/material-icons.css">
@@ -322,8 +322,8 @@
322322

323323

324324
<li class="md-nav__item">
325-
<a href="../BT_basics/" title="The Basics" class="md-nav__link">
326-
The Basics
325+
<a href="../BT_basics/" title="Introduction" class="md-nav__link">
326+
Introduction
327327
</a>
328328
</li>
329329

@@ -394,8 +394,8 @@
394394

395395

396396
<li class="md-nav__item">
397-
<a href="../getting_started/" title="Main concepts" class="md-nav__link">
398-
Main concepts
397+
<a href="../getting_started/" title="Getting started" class="md-nav__link">
398+
Getting started
399399
</a>
400400
</li>
401401

@@ -454,8 +454,8 @@
454454

455455

456456
<li class="md-nav__item">
457-
<a href="../tutorial_E_plugins/" title="Create Plugins" class="md-nav__link">
458-
Create Plugins
457+
<a href="../tutorial_E_plugins/" title="Create a Plugin" class="md-nav__link">
458+
Create a Plugin
459459
</a>
460460
</li>
461461

0 commit comments

Comments
 (0)