mirror of
https://github.com/godotengine/godot-docs.git
synced 2026-01-04 14:11:02 +03:00
Fix mixed use of tabs and spaces in indented blocks
4-space is our convention for indented blocks and should be used consistently. The only exception is for C++ code which is tab-indented, as the engine code.
This commit is contained in:
@@ -171,8 +171,7 @@ Return whether the custom node has an input **sequence** port.
|
||||
|
||||
Execute the custom node's logic, returning the index of the output sequence port to use or a :ref:`String<class_String>` when there is an error.
|
||||
|
||||
|
||||
The ``inputs`` array contains the values of the input ports.
|
||||
The ``inputs`` array contains the values of the input ports.
|
||||
|
||||
``outputs`` is an array whose indices should be set to the respective outputs.
|
||||
|
||||
@@ -180,6 +179,5 @@ The ``start_mode`` is usually ``START_MODE_BEGIN_SEQUENCE``, unless you have use
|
||||
|
||||
``working_mem`` is an array which can be used to persist information between runs of the custom node.
|
||||
|
||||
|
||||
When returning, you can mask the returned value with one of the STEP\_\* constants.
|
||||
When returning, you can mask the returned value with one of the STEP\_\* constants.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user