1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Merge pull request #76418 from reduz/method-bind-validated-call

Add ValidatedCall to MethodBind
This commit is contained in:
Rémi Verschelde
2023-05-08 13:52:42 +02:00
31 changed files with 299 additions and 84 deletions

View File

@@ -936,8 +936,8 @@ TypedArray<Dictionary> Object::_get_method_list_bind() const {
return ret;
}
Vector<StringName> Object::_get_meta_list_bind() const {
Vector<StringName> _metaret;
TypedArray<StringName> Object::_get_meta_list_bind() const {
TypedArray<StringName> _metaret;
for (const KeyValue<StringName, Variant> &K : metadata) {
_metaret.push_back(K.key);