diff options
author | eska <eska@eska.me> | 2016-07-30 20:41:38 +0200 |
---|---|---|
committer | eska <eska@eska.me> | 2016-07-30 21:27:58 +0200 |
commit | b80c42ef4e99ee155a98c7a2f17201280612257f (patch) | |
tree | 44955cc366e2dc327481f4a62fdcb4429a2f4250 /core | |
parent | 73f83fadc82a9fa0fd4a70dec4ecd9d4a8dde6a9 (diff) |
Document FuncRef, GDFunctionState, InstancePlaceholder, RID, World2D
Diffstat (limited to 'core')
-rw-r--r-- | core/func_ref.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/func_ref.cpp b/core/func_ref.cpp index 29b06ae9a0..644d8b5b63 100644 --- a/core/func_ref.cpp +++ b/core/func_ref.cpp @@ -65,7 +65,7 @@ void FuncRef::_bind_methods() { mi.arguments.push_back( PropertyInfo( Variant::NIL, "arg"+itos(i))); defargs.push_back(Variant()); } - ObjectTypeDB::bind_native_method(METHOD_FLAGS_DEFAULT,"call_func",&FuncRef::call_func,mi,defargs); + ObjectTypeDB::bind_native_method(METHOD_FLAGS_DEFAULT,"call_func:Variant",&FuncRef::call_func,mi,defargs); } |