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

Removes type information from vararg method binds

This commit is contained in:
Ignacio Etcheverry
2017-08-09 13:20:24 +02:00
parent 2f290038d6
commit b8420cda9c
2 changed files with 2 additions and 2 deletions

View File

@@ -1699,7 +1699,7 @@ void Object::_bind_methods() {
mi.name = "call";
mi.arguments.push_back(PropertyInfo(Variant::STRING, "method"));
ClassDB::bind_vararg_method(METHOD_FLAGS_DEFAULT, "call:Variant", &Object::_call_bind, mi);
ClassDB::bind_vararg_method(METHOD_FLAGS_DEFAULT, "call", &Object::_call_bind, mi);
}
{