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 /modules | |
parent | 73f83fadc82a9fa0fd4a70dec4ecd9d4a8dde6a9 (diff) |
Document FuncRef, GDFunctionState, InstancePlaceholder, RID, World2D
Diffstat (limited to 'modules')
-rw-r--r-- | modules/gdscript/gd_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gd_editor.cpp b/modules/gdscript/gd_editor.cpp index 520a8b18d8..b02e55cf9d 100644 --- a/modules/gdscript/gd_editor.cpp +++ b/modules/gdscript/gd_editor.cpp @@ -297,7 +297,7 @@ void GDScriptLanguage::get_public_functions(List<MethodInfo> *p_functions) const } { MethodInfo mi; - mi.name="yield"; + mi.name="yield:GDFunctionState"; mi.arguments.push_back(PropertyInfo(Variant::OBJECT,"object")); mi.arguments.push_back(PropertyInfo(Variant::STRING,"signal")); mi.default_arguments.push_back(Variant::NIL); |