summaryrefslogtreecommitdiff
path: root/modules/visual_script/doc_classes
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2021-09-13 22:05:54 +0200
committerGitHub <noreply@github.com>2021-09-13 22:05:54 +0200
commit01014e9a05c2c7e35d1c004e564d345ee69c0fd6 (patch)
tree8a07d0d37adc56b893bace0ce22cb8ea687d6d22 /modules/visual_script/doc_classes
parent0b60b9f75cfc0afea3396e19d0afb250dd61f090 (diff)
parent080125660a9adee7f03cbbf4ffcd0cef079123b5 (diff)
Merge pull request #51674 from Gallilus/VisualScriptCustomNode-update-documentation
Update VisualScriptCustomNode documentation
Diffstat (limited to 'modules/visual_script/doc_classes')
-rw-r--r--modules/visual_script/doc_classes/VisualScriptCustomNode.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/visual_script/doc_classes/VisualScriptCustomNode.xml b/modules/visual_script/doc_classes/VisualScriptCustomNode.xml
index b574576856..2c6313c80a 100644
--- a/modules/visual_script/doc_classes/VisualScriptCustomNode.xml
+++ b/modules/visual_script/doc_classes/VisualScriptCustomNode.xml
@@ -131,7 +131,7 @@
The [code]inputs[/code] array contains the values of the input ports.
[code]outputs[/code] is an array whose indices should be set to the respective outputs.
The [code]start_mode[/code] is usually [constant START_MODE_BEGIN_SEQUENCE], unless you have used the [code]STEP_*[/code] constants.
- [code]working_mem[/code] is an array which can be used to persist information between runs of the custom node.
+ [code]working_mem[/code] is an array which can be used to persist information between runs of the custom node. The size needs to be predefined using [method _get_working_memory_size].
When returning, you can mask the returned value with one of the [code]STEP_*[/code] constants.
</description>
</method>