diff options
| author | Karroffel | 2017-03-13 16:45:27 +0100 |
|---|---|---|
| committer | Karroffel | 2017-03-13 21:17:31 +0100 |
| commit | 6ab3213a557fac60d20b1e06db96a7f9e97d243a (patch) | |
| tree | a8737979a27ebb28242f2b54441b1029731ed1aa /core/object.cpp | |
| parent | af550e2f9822dc4ea7c06aee7d8b4f1af1d61de3 (diff) | |
| download | godot-6ab3213a557fac60d20b1e06db96a7f9e97d243a.tar.gz godot-6ab3213a557fac60d20b1e06db96a7f9e97d243a.tar.zst godot-6ab3213a557fac60d20b1e06db96a7f9e97d243a.zip | |
Diffstat (limited to 'core/object.cpp')
| -rw-r--r-- | core/object.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/object.cpp b/core/object.cpp index e9b332faf..fe6f120c1 100644 --- a/core/object.cpp +++ b/core/object.cpp @@ -1587,7 +1587,7 @@ void Object::_bind_methods() { ClassDB::bind_method(D_METHOD("get_class"), &Object::get_class); ClassDB::bind_method(D_METHOD("is_class", "type"), &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("get:Variant", "property"), &Object::_get_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)); |
