summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gd_function.cpp
diff options
context:
space:
mode:
authorRuslan Mustakov <r.mustakov@gmail.com>2017-10-05 18:44:00 +0700
committerRuslan Mustakov <r.mustakov@gmail.com>2017-10-05 18:51:22 +0700
commit61ddf52983933a5500f91e13fc1234d5027e35e5 (patch)
treea35ec628755c200cff0aed82b5a9c0bc0f8028fe /modules/gdscript/gd_function.cpp
parentb759d1416f574e5b642413edd623b04f2a1d20ad (diff)
downloadredot-engine-61ddf52983933a5500f91e13fc1234d5027e35e5.tar.gz
Add NIL_IS_VARIANT usage to few definitions
The missing usage flag led to GDNative API descriptions containting arguments with "void" type.
Diffstat (limited to 'modules/gdscript/gd_function.cpp')
-rw-r--r--modules/gdscript/gd_function.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gd_function.cpp b/modules/gdscript/gd_function.cpp
index 9df2823c35..ce503b62f2 100644
--- a/modules/gdscript/gd_function.cpp
+++ b/modules/gdscript/gd_function.cpp
@@ -1578,7 +1578,7 @@ void GDFunctionState::_bind_methods() {
ClassDB::bind_method(D_METHOD("is_valid", "extended_check"), &GDFunctionState::is_valid, DEFVAL(false));
ClassDB::bind_vararg_method(METHOD_FLAGS_DEFAULT, "_signal_callback", &GDFunctionState::_signal_callback, MethodInfo("_signal_callback"));
- ADD_SIGNAL(MethodInfo("completed", PropertyInfo(Variant::NIL, "result")));
+ ADD_SIGNAL(MethodInfo("completed", PropertyInfo(Variant::NIL, "result", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_NIL_IS_VARIANT)));
}
GDFunctionState::GDFunctionState() {