summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2020-09-13 22:01:52 +0200
committerHugo Locurcio <hugo.locurcio@hugo.pro>2020-09-14 14:01:13 +0200
commitcba4d73b7194679b2a315967c781b89ca0fb4930 (patch)
tree559ce2621db54b92aed612f2ef43ee2830dd059b /doc
parentde465c41dc1a63e1a984b09e790fcc87eff21535 (diff)
Document how to remove metadata from an Object
This closes https://github.com/godotengine/godot-docs/issues/4010.
Diffstat (limited to 'doc')
-rw-r--r--doc/classes/Object.xml5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/classes/Object.xml b/doc/classes/Object.xml
index 2395ccd211..50d91c7943 100644
--- a/doc/classes/Object.xml
+++ b/doc/classes/Object.xml
@@ -395,7 +395,7 @@
<argument index="0" name="name" type="String">
</argument>
<description>
- Removes a given entry from the object's metadata.
+ Removes a given entry from the object's metadata. See also [method set_meta].
</description>
</method>
<method name="set">
@@ -464,7 +464,8 @@
<argument index="1" name="value" type="Variant">
</argument>
<description>
- Adds or changes a given entry in the object's metadata. Metadata are serialized, and can take any [Variant] value.
+ Adds, changes or removes a given entry in the object's metadata. Metadata are serialized and can take any [Variant] value.
+ To remove a given entry from the object's metadata, use [method remove_meta]. Metadata is also removed if its value is set to [code]null[/code]. This means you can also use [code]set_meta("name", null)[/code] to remove metadata for [code]"name"[/code].
</description>
</method>
<method name="set_script">