mirror of
https://github.com/godotengine/godot-visual-script.git
synced 2026-01-05 22:10:23 +03:00
doc: Markup fixes for enums and constants
This commit is contained in:
@@ -45,7 +45,7 @@
|
|||||||
<argument index="0" name="idx" type="int">
|
<argument index="0" name="idx" type="int">
|
||||||
</argument>
|
</argument>
|
||||||
<description>
|
<description>
|
||||||
Return the specified input port's type. See the [code]TYPE_*[/code] enum in [@GlobalScope].
|
Return the specified input port's type. See the [enum Variant.Type] values.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="_get_output_sequence_port_count" qualifiers="virtual">
|
<method name="_get_output_sequence_port_count" qualifiers="virtual">
|
||||||
@@ -86,7 +86,7 @@
|
|||||||
<argument index="0" name="idx" type="int">
|
<argument index="0" name="idx" type="int">
|
||||||
</argument>
|
</argument>
|
||||||
<description>
|
<description>
|
||||||
Return the specified output's type. See the [code]TYPE_*[/code] enum in [@GlobalScope].
|
Return the specified output's type. See the [enum Variant.Type] values.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="_get_text" qualifiers="virtual">
|
<method name="_get_text" qualifiers="virtual">
|
||||||
@@ -136,17 +136,17 @@
|
|||||||
The start mode used the first time when [method _step] is called.
|
The start mode used the first time when [method _step] is called.
|
||||||
</constant>
|
</constant>
|
||||||
<constant name="START_MODE_CONTINUE_SEQUENCE" value="1" enum="StartMode">
|
<constant name="START_MODE_CONTINUE_SEQUENCE" value="1" enum="StartMode">
|
||||||
The start mode used when [method _step] is called after coming back from a STEP_PUSH_STACK_BIT.
|
The start mode used when [method _step] is called after coming back from a [constant STEP_PUSH_STACK_BIT].
|
||||||
</constant>
|
</constant>
|
||||||
<constant name="START_MODE_RESUME_YIELD" value="2" enum="StartMode">
|
<constant name="START_MODE_RESUME_YIELD" value="2" enum="StartMode">
|
||||||
The start mode used when [method _step] is called after resuming from STEP_YIELD_BIT.
|
The start mode used when [method _step] is called after resuming from [constant STEP_YIELD_BIT].
|
||||||
</constant>
|
</constant>
|
||||||
<constant name="STEP_PUSH_STACK_BIT" value="16777216">
|
<constant name="STEP_PUSH_STACK_BIT" value="16777216">
|
||||||
Hint used by [method _step] to tell that control should return to it when there is no other node left to execute.
|
Hint used by [method _step] to tell that control should return to it when there is no other node left to execute.
|
||||||
This is used by [VisualScriptCondition] to redirect the sequence to the "Done" port after the [code]true[/code]/[code]false[/code] branch has finished execution.
|
This is used by [VisualScriptCondition] to redirect the sequence to the "Done" port after the [code]true[/code]/[code]false[/code] branch has finished execution.
|
||||||
</constant>
|
</constant>
|
||||||
<constant name="STEP_GO_BACK_BIT" value="33554432">
|
<constant name="STEP_GO_BACK_BIT" value="33554432">
|
||||||
Hint used by [method _step] to tell that control should return back, either hitting a previous STEP_PUSH_STACK_BIT or exiting the function.
|
Hint used by [method _step] to tell that control should return back, either hitting a previous [constant STEP_PUSH_STACK_BIT] or exiting the function.
|
||||||
</constant>
|
</constant>
|
||||||
<constant name="STEP_NO_ADVANCE_BIT" value="67108864">
|
<constant name="STEP_NO_ADVANCE_BIT" value="67108864">
|
||||||
</constant>
|
</constant>
|
||||||
|
|||||||
Reference in New Issue
Block a user