| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent b85c918 commit 62e0c7a
12 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,3 +1,4 @@ | |||
| 1 | 1 | /node_modules/ | |
| 2 | 2 | /package-lock.json | |
| 3 | 3 | /.docusaurus/ | |
| 4 | + /build/ | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -43,7 +43,7 @@ This blocks are implemented in C++ and are "composable": in other words, can be | |||
| 43 | 43 | ||
| 44 | 44 | In the image above, you can see as we are arranging these actions in a simple Sequence; | |
| 45 | 45 | actions will be executed in order from left to right. To learn mode, visit the page | |
| 46 | - [Introduction to BTs](learn-the-basic/BT_basics.md). | ||
| 46 | + [Introduction to BTs](learn-the-basics/BT_basics.md). | ||
| 47 | 47 | ||
| 48 | 48 | ### Main Advantages of Behavior Trees | |
| 49 | 49 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -145,7 +145,7 @@ is interrupted. | |||
| 145 | 145 | ||
| 146 | 146 | ### Second ControlNode: Fallback | |
| 147 | 147 | ||
| 148 | - [FallbackNodes](FallbackNode.md), known also as __"Selectors"__, | ||
| 148 | + [FallbackNodes](nodes-library/FallbackNode.md), known also as __"Selectors"__, | ||
| 149 | 149 | are nodes that can express, as the name suggests, fallback strategies, | |
| 150 | 150 | i.e. what to do next if a child returns FAILURE. | |
| 151 | 151 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,7 +1,7 @@ | |||
| 1 | 1 | ||
| 2 | 2 | # The XML schema | |
| 3 | 3 | ||
| 4 | - In the [first tutorial](tutorial_01_first_tree.md) this simple tree | ||
| 4 | + In the [first tutorial](tutorial-basics/tutorial_01_first_tree.md) this simple tree | ||
| 5 | 5 | was presented. | |
| 6 | 6 | ||
| 7 | 7 | ``` XML | |
@@ -43,7 +43,7 @@ You may notice that: | |||
| 43 | 43 | ||
| 44 | 44 | ## Ports Remapping and pointers to Blackboards entries | |
| 45 | 45 | ||
| 46 | - As explained in the [second tutorial](tutorial_02_basic_ports.md) | ||
| 46 | + As explained in the [second tutorial](tutorial-basics/tutorial_02_basic_ports.md) | ||
| 47 | 47 | input/output ports can be remapped using the name of an entry in the | |
| 48 | 48 | Blackboard, in other words, the __key__ of a __key/value__ pair of the BB. | |
| 49 | 49 | ||
@@ -130,7 +130,7 @@ must be modified as follows: | |||
| 130 | 130 | ||
| 131 | 131 | ## Subtrees | |
| 132 | 132 | ||
| 133 | - As we saw in [this tutorial](tutorial_06_subtree_ports.md), it is possible to include | ||
| 133 | + As we saw in [this tutorial](tutorial-basics/tutorial_06_subtree_ports.md), it is possible to include | ||
| 134 | 134 | a Subtree inside another tree to avoid "copy and pasting" the same tree in | |
| 135 | 135 | multiple location and to reduce complexity. | |
| 136 | 136 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -25,7 +25,7 @@ Flow of execution should be returned as fast as possible. | |||
| 25 | 25 | Users should fully understand how Concurrency is achieved in BT.CPP | |
| 26 | 26 | and learn best practices about how to develop their own Asynchronous | |
| 27 | 27 | Actions. You will find an extensive article | |
| 28 | - [here](tutoral-advanced/asynchronous_nodes.md). | ||
| 28 | + [here](tutorial-advanced/asynchronous_nodes.md). | ||
| 29 | 29 | ::: | |
| 30 | 30 | ||
| 31 | 31 | ## StatefulAsyncAction | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -25,6 +25,11 @@ const config = { | |||
| 25 | 25 | i18n: { | |
| 26 | 26 | defaultLocale: 'en', | |
| 27 | 27 | locales: ['en'], | |
| 28 | + localeConfigs: { | ||
| 29 | + en: { | ||
| 30 | + htmlLang: 'en-US', | ||
| 31 | + }, | ||
| 32 | + }, | ||
| 28 | 33 | }, | |
| 29 | 34 | ||
| 30 | 35 | plugins: [require.resolve("@cmfcmf/docusaurus-search-local")], | |
@@ -39,7 +44,6 @@ const config = { | |||
| 39 | 44 | versions: { | |
| 40 | 45 | current: { | |
| 41 | 46 | label: '4.0', | |
| 42 | - path: '4.0', | ||
| 43 | 47 | }, | |
| 44 | 48 | 3.8: { | |
| 45 | 49 | label: '3.8', | |
@@ -94,7 +98,6 @@ const config = { | |||
| 94 | 98 | { | |
| 95 | 99 | type: 'docsVersionDropdown', | |
| 96 | 100 | position: 'right', | |
| 97 | - dropdownItemsAfter: [{to: '/versions'}], | ||
| 98 | 101 | dropdownActiveClassDisabled: true, | |
| 99 | 102 | }, | |
| 100 | 103 | {to: '/blog', label: 'Blog', position: 'right'}, | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -18,15 +18,8 @@ | |||
| 18 | 18 | "@docusaurus/core": "2.1.0", | |
| 19 | 19 | "@docusaurus/plugin-ideal-image": "^2.1.0", | |
| 20 | 20 | "@docusaurus/preset-classic": "2.1.0", | |
| 21 | - "@emailjs/browser": "^3.7.0", | ||
| 22 | - "@fortawesome/fontawesome-svg-core": "^6.2.0", | ||
| 23 | - "@fortawesome/free-solid-svg-icons": "^6.2.0", | ||
| 24 | - "@fortawesome/react-fontawesome": "^0.2.0", | ||
| 25 | 21 | "@mdx-js/react": "^1.6.22", | |
| 26 | - "@trendyol-js/react-carousel": "^3.0.0", | ||
| 27 | - "bootstrap": "^5.2.2", | ||
| 28 | 22 | "clsx": "^1.2.1", | |
| 29 | - "emailjs": "^4.0.1", | ||
| 30 | 23 | "prism-react-renderer": "^1.3.5", | |
| 31 | 24 | "react": "^17.0.2", | |
| 32 | 25 | "react-bootstrap": "^2.5.0", | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -39,7 +39,7 @@ more consistent. | |||
| 39 | 39 | ||
| 40 | 40 | ## SetBlackbard and BlackboardPrecondition | |
| 41 | 41 | ||
| 42 | - The new [scripting language](docs/tutorial-advanced/scripting) | ||
| 42 | + The new [scripting language](/docs/tutorial-advanced/scripting) | ||
| 43 | 43 | is much simpler and more powerful. | |
| 44 | 44 | ||
| 45 | 45 | Old code in **3.8+**: | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -43,7 +43,7 @@ This blocks are implemented in C++ and are "composable": in other words, can be | |||
| 43 | 43 | ||
| 44 | 44 | In the image above, you can see as we are arranging these actions in a simple Sequence; | |
| 45 | 45 | actions will be executed in order from left to right. To learn mode, visit the page | |
| 46 | - [Introduction to BTs](learn-the-basic/BT_basics.md). | ||
| 46 | + [Introduction to BTs](learn-the-basics/BT_basics.md). | ||
| 47 | 47 | ||
| 48 | 48 | ### Main Advantages of Behavior Trees | |
| 49 | 49 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -145,7 +145,7 @@ is interrupted. | |||
| 145 | 145 | ||
| 146 | 146 | ### Second ControlNode: Fallback | |
| 147 | 147 | ||
| 148 | - [FallbackNodes](FallbackNode.md), known also as __"Selectors"__, | ||
| 148 | + [FallbackNodes](nodes-library/FallbackNode.md), known also as __"Selectors"__, | ||
| 149 | 149 | are nodes that can express, as the name suggests, fallback strategies, | |
| 150 | 150 | i.e. what to do next if a child returns FAILURE. | |
| 151 | 151 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments