summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/classes/Object.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/classes/Object.xml b/doc/classes/Object.xml
index bb7289cc99..f3fd599922 100644
--- a/doc/classes/Object.xml
+++ b/doc/classes/Object.xml
@@ -219,6 +219,7 @@
# Storing the value in the fake property.
internal_data["fake_property"] = value
return true
+ return false
func _get_property_list():
return [
@@ -228,7 +229,7 @@
[csharp]
private Godot.Collections.Dictionary _internalData = new Godot.Collections.Dictionary();
- public override void _Set(StringName property, Variant value)
+ public override bool _Set(StringName property, Variant value)
{
if (property == "FakeProperty")
{