Added VisualScript* descriptions
[ci skip]
This commit is contained in:
committed by
Rémi Verschelde
parent
9e93f5b478
commit
bf0b328197
@@ -4,7 +4,14 @@
|
||||
A Visual Script node which branches the flow.
|
||||
</brief_description>
|
||||
<description>
|
||||
A Visual Script node which switches the flow based on a boolean. It acts similar to if/else in typical programming languages.
|
||||
A Visual Script node that checks a [bool] input port. If [code]true[/code] it will exit via the “true” sequence port. If [code]false[/code] it will exit via the "false" sequence port. After exiting either, it exits via the “done” port. Sequence ports may be left disconnected.
|
||||
[b]Input Ports:[/b]
|
||||
- Sequence: [code]if (cond) is[/code]
|
||||
- Data (boolean): [code]cond[/code]
|
||||
[b]Output Ports:[/b]
|
||||
- Sequence: [code]true[/code]
|
||||
- Sequence: [code]false[/code]
|
||||
- Sequence: [code]done[/code]
|
||||
</description>
|
||||
<tutorials>
|
||||
</tutorials>
|
||||
|
||||
Reference in New Issue
Block a user