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/VisualScriptPropertyGet.xml | 48 ---------------------- 1 file changed, 48 deletions(-) delete mode 100644 modules/visual_script/doc_classes/VisualScriptPropertyGet.xml (limited to 'modules/visual_script/doc_classes/VisualScriptPropertyGet.xml') diff --git a/modules/visual_script/doc_classes/VisualScriptPropertyGet.xml b/modules/visual_script/doc_classes/VisualScriptPropertyGet.xml deleted file mode 100644 index 77cd6393a9..0000000000 --- a/modules/visual_script/doc_classes/VisualScriptPropertyGet.xml +++ /dev/null @@ -1,48 +0,0 @@ - - - - A Visual Script node returning a value of a property from an [Object]. - - - [VisualScriptPropertyGet] can return a value of any property from the current object or other objects. - - - - - - The script to be used when [member set_mode] is set to [constant CALL_MODE_INSTANCE]. - - - The base type to be used when [member set_mode] is set to [constant CALL_MODE_INSTANCE]. - - - The type to be used when [member set_mode] is set to [constant CALL_MODE_BASIC_TYPE]. - - - The indexed name of the property to retrieve. See [method Object.get_indexed] for details. - - - The node path to use when [member set_mode] is set to [constant CALL_MODE_NODE_PATH]. - - - The name of the property to retrieve. Changing this will clear [member index]. - - - [code]set_mode[/code] determines the target object from which the property will be retrieved. See [enum CallMode] for options. - - - - - The property will be retrieved from this [Object]. - - - The property will be retrieved from the given [Node] in the scene tree. - - - The property will be retrieved from an instanced node with the given type and script. - - - The property will be retrieved from a GDScript basic type (e.g. [Vector2]). - - - -- cgit v1.2.3