mirror of
https://github.com/godotengine/godot.git
synced 2026-01-05 06:11:29 +03:00
doc: Add missing commas after "If true/false"
This commit is contained in:
@@ -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]
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
</methods>
|
||||
<members>
|
||||
<member name="return_enabled" type="bool" setter="set_enable_return_value" getter="is_return_value_enabled">
|
||||
If [code]true[/code] the [code]return[/code] input port is available.
|
||||
If [code]true[/code], the [code]return[/code] input port is available.
|
||||
</member>
|
||||
<member name="return_type" type="int" setter="set_return_type" getter="get_return_type" enum="Variant.Type">
|
||||
The return value's data type.
|
||||
|
||||
Reference in New Issue
Block a user