diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-08-28 09:15:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-28 09:15:40 +0200 |
commit | 185072015f0fa38bbb2b48f5bd3b39cc6e07c487 (patch) | |
tree | b527e47882a292fe377dc6325306a250f6ecc6bb /modules/gdscript/gdscript.cpp | |
parent | 2dbc7d312ffdcbd9745e8ef70d81c7b7a61ef0ec (diff) | |
parent | a919f5e614d0a2212e50c648aa0fb3e31c61e9e0 (diff) |
Merge pull request #31606 from toasteater/fix/nativescript-new-json-return-type
Fix the return type of NativeScript::new in API json
Diffstat (limited to 'modules/gdscript/gdscript.cpp')
-rw-r--r-- | modules/gdscript/gdscript.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript.cpp b/modules/gdscript/gdscript.cpp index d929bdb3e5..5dab063061 100644 --- a/modules/gdscript/gdscript.cpp +++ b/modules/gdscript/gdscript.cpp @@ -710,7 +710,7 @@ void GDScript::_get_property_list(List<PropertyInfo> *p_properties) const { void GDScript::_bind_methods() { - ClassDB::bind_vararg_method(METHOD_FLAGS_DEFAULT, "new", &GDScript::_new, MethodInfo(Variant::OBJECT, "new")); + ClassDB::bind_vararg_method(METHOD_FLAGS_DEFAULT, "new", &GDScript::_new, MethodInfo("new")); ClassDB::bind_method(D_METHOD("get_as_byte_code"), &GDScript::get_as_byte_code); } |