Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 1.55 KB

index.md

File metadata and controls

17 lines (11 loc) · 1.55 KB

Tutorial 3: Condition node

Description

Use the condition node to test the value of an entry of the agent's knowledge.

Adding a condition to the behavior

In this tutorial we will use the condition node () to test if the knowledge entry "answer" is different from an empty string. If so, we will execute the next child of the sequence, else the condition will fail and so will the sequence, thus skipping the "Say" action. Simply drag a condition node from the palette to the canvas to have the following pattern: example tutorial 3 You will need to configure the condition node by double-clicking on it and set its properties as described below: condition properties

Once you have saved your behavior tree, you can run the tutorial once again. When prompted for an input, leave the field blank and submit the form. You will see that the pop-up will reappear even though nothing has been displayed on the page, which is the expected behavior since the condition AK.answer!="" is not verified (the condition node fails). However if you enter anything in the form and submit it, your text will be displayed thanks to the "Say" action that will be executed after the condition node.

You can take a look at the expected result by running the application with bts/3 as the behaviors folder.