diff options
author | Micky <micheledevita2@gmail.com> | 2022-10-12 10:27:44 +0200 |
---|---|---|
committer | Micky <micheledevita2@gmail.com> | 2022-10-12 10:27:44 +0200 |
commit | dc51ff8c5b848f0dbd5624fa795b3d98004ac7d6 (patch) | |
tree | d8578fa303a93dc6b451b30f0adfdf30302f41d7 /core/object | |
parent | 143dbb354411e5f669e0f751f1254d03f531d576 (diff) |
Rename `set`/`get_indexed`'s "property" to "property_path"
Also touches up the Documentation slightly.
Diffstat (limited to 'core/object')
-rw-r--r-- | core/object/object.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/object/object.cpp b/core/object/object.cpp index c275164b14..368cba740d 100644 --- a/core/object/object.cpp +++ b/core/object/object.cpp @@ -1468,8 +1468,8 @@ void Object::_bind_methods() { ClassDB::bind_method(D_METHOD("is_class", "class"), &Object::is_class); ClassDB::bind_method(D_METHOD("set", "property", "value"), &Object::_set_bind); ClassDB::bind_method(D_METHOD("get", "property"), &Object::_get_bind); - ClassDB::bind_method(D_METHOD("set_indexed", "property", "value"), &Object::_set_indexed_bind); - ClassDB::bind_method(D_METHOD("get_indexed", "property"), &Object::_get_indexed_bind); + ClassDB::bind_method(D_METHOD("set_indexed", "property_path", "value"), &Object::_set_indexed_bind); + ClassDB::bind_method(D_METHOD("get_indexed", "property_path"), &Object::_get_indexed_bind); ClassDB::bind_method(D_METHOD("get_property_list"), &Object::_get_property_list_bind); ClassDB::bind_method(D_METHOD("get_method_list"), &Object::_get_method_list_bind); ClassDB::bind_method(D_METHOD("notification", "what", "reversed"), &Object::notification, DEFVAL(false)); |