diff options
author | reduz <reduzio@gmail.com> | 2022-04-28 22:49:10 +0200 |
---|---|---|
committer | reduz <reduzio@gmail.com> | 2022-05-03 17:08:09 +0200 |
commit | 0a57f964a357976e023b638e872397ba94123776 (patch) | |
tree | 73b2d68b63b7634857150b6a31ae281b27cb392f /doc/classes/MissingNode.xml | |
parent | d5d86cb26e65b89a00b644de6eef510d8ca06797 (diff) | |
download | redot-engine-0a57f964a357976e023b638e872397ba94123776.tar.gz |
Implement missing Node & Resource placeholders
Implemented by request of @neikeq to advance in the GDExtension version of Mono.
* If a Resource type is missing upon load, it will be remembered together with its data (Unless manually overriden).
* If a Node type is missing upon load, it will be also be remembered together with its data (unless deleted).
This feature makes working with GDExtension much easier, as it ensures that missing types no longer cause data loss.
Diffstat (limited to 'doc/classes/MissingNode.xml')
-rw-r--r-- | doc/classes/MissingNode.xml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/classes/MissingNode.xml b/doc/classes/MissingNode.xml new file mode 100644 index 0000000000..b5aa02cfd6 --- /dev/null +++ b/doc/classes/MissingNode.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class name="MissingNode" inherits="Node" version="4.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd"> + <brief_description> + This is an internal editor class intended for keeping data of nodes of unknown type. + </brief_description> + <description> + This is an internal editor class intended for keeping data of nodes of unknown type (most likely this type was supplied by an extension that is no longer loaded). It can´t be manually instantiated or placed in the scene. Ignore it if you don't know what it is. + </description> + <tutorials> + </tutorials> + <members> + <member name="original_class" type="String" setter="set_original_class" getter="get_original_class"> + </member> + <member name="recording_properties" type="bool" setter="set_recording_properties" getter="is_recording_properties"> + </member> + </members> +</class> |