mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Bindings: Fix Object::get_meta return type.
The method was shown as void in the docs.
(cherry picked from commit 2b7b67b7b1)
This commit is contained in:
parent
14392c9798
commit
992b415702
1 changed files with 1 additions and 1 deletions
|
|
@ -1538,7 +1538,7 @@ void Object::_bind_methods() {
|
|||
ObjectTypeDB::bind_method(_MD("get_script:Script"), &Object::get_script);
|
||||
|
||||
ObjectTypeDB::bind_method(_MD("set_meta", "name", "value"), &Object::set_meta);
|
||||
ObjectTypeDB::bind_method(_MD("get_meta", "name", "value"), &Object::get_meta);
|
||||
ObjectTypeDB::bind_method(_MD("get_meta:Variant", "name", "value"), &Object::get_meta);
|
||||
ObjectTypeDB::bind_method(_MD("has_meta", "name"), &Object::has_meta);
|
||||
ObjectTypeDB::bind_method(_MD("get_meta_list"), &Object::_get_meta_list_bind);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue