From b1f392c25e214b331f87737d9e27aad30e95f201 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Wed, 24 Aug 2022 12:05:37 +0200 Subject: Remove VisualScript module for 4.0 As announced in https://godotengine.org/article/godot-4-will-discontinue-visual-scripting, Godot maintainers have agreed to discontinue the current implementation of our VisualScript language. The way it had been designed was not user-friendly enough and we did not succeed in improving its usability to actually make it a good low-code solution for users who need one. So we prefer to remove it for Godot 4.0 and leave the door open for new, innovative ideas around visual scripting, to be developed as plugins or extensions now that Godot provides sufficient functionality for this (notably via GDExtension and the godot-cpp C++ bindings). The current module has been moved to a dedicated repository (with full Git history extracted with `git filter-branch`): https://github.com/godotengine/godot-visual-script It can still be compiled as a C++ module (for now, but will likely require work to be kept in sync with the engine repository), but our hope is that contributors will port it to GDExtension (which is quite compatibile with the existing C++ module code when using the godot-cpp C++ bindings). --- .../doc_classes/VisualScriptCustomNode.xml | 166 --------------------- 1 file changed, 166 deletions(-) delete mode 100644 modules/visual_script/doc_classes/VisualScriptCustomNode.xml (limited to 'modules/visual_script/doc_classes/VisualScriptCustomNode.xml') diff --git a/modules/visual_script/doc_classes/VisualScriptCustomNode.xml b/modules/visual_script/doc_classes/VisualScriptCustomNode.xml deleted file mode 100644 index 6e522b2f84..0000000000 --- a/modules/visual_script/doc_classes/VisualScriptCustomNode.xml +++ /dev/null @@ -1,166 +0,0 @@ - - - - A scripted Visual Script node. - - - A custom Visual Script node which can be scripted in powerful ways. - - - - - - - - Returns the node's title. - - - - - - Returns the node's category. - - - - - - Returns the count of input value ports. - - - - - - - Returns the specified input port's hint. See the [enum @GlobalScope.PropertyHint] hints. - - - - - - - Returns the specified input port's hint string. - - - - - - - Returns the specified input port's name. - - - - - - - Returns the specified input port's type. See the [enum Variant.Type] values. - - - - - - Returns the amount of output [b]sequence[/b] ports. - - - - - - - Returns the specified [b]sequence[/b] output's name. - - - - - - Returns the amount of output value ports. - - - - - - - Returns the specified output port's hint. See the [enum @GlobalScope.PropertyHint] hints. - - - - - - - Returns the specified output port's hint string. - - - - - - - Returns the specified output port's name. - - - - - - - Returns the specified output port's type. See the [enum Variant.Type] values. - - - - - - Returns the custom node's text, which is shown right next to the input [b]sequence[/b] port (if there is none, on the place that is usually taken by it). - - - - - - Returns the size of the custom node's working memory. See [method _step] for more details. - - - - - - Returns whether the custom node has an input [b]sequence[/b] port. - - - - - - - - - - Execute the custom node's logic, returning the index of the output sequence port to use or a [String] when there is an error. - 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. 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. - - - - - - The start mode used the first time when [method _step] is called. - - - The start mode used when [method _step] is called after coming back from a [constant STEP_PUSH_STACK_BIT]. - - - The start mode used when [method _step] is called after resuming from [constant STEP_YIELD_BIT]. - - - 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. - - - 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. - - - - - Hint used by [method _step] to tell that control should stop and exit the function. - - - Hint used by [method _step] to tell that the function should be yielded. - Using this requires you to have at least one working memory slot, which is used for the [VisualScriptFunctionState]. - - - -- cgit v1.2.3