1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-09 12:50:35 +00:00

doc: Misc formatting fixes

This commit is contained in:
Rémi Verschelde
2019-02-10 13:30:45 +01:00
parent ba0a4a942e
commit f614f15506
5 changed files with 12 additions and 12 deletions

View File

@@ -4,7 +4,7 @@
A Visual Script node which branches the flow.
</brief_description>
<description>
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.
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]