浏览代码

Merge pull request #35229 from lakshay-angrish/35090-methods-in-xml-not-in-editor

show parametric setters and getters in editor help
Rémi Verschelde 5 年之前
父节点
当前提交
0aefec2454
共有 1 个文件被更改,包括 5 次插入2 次删除
  1. 5 2
      editor/editor_help.cpp

+ 5 - 2
editor/editor_help.cpp

@@ -603,8 +603,11 @@ void EditorHelp::_update_doc() {
 	Vector<DocData::MethodDoc> methods;
 	Vector<DocData::MethodDoc> methods;
 
 
 	for (int i = 0; i < cd.methods.size(); i++) {
 	for (int i = 0; i < cd.methods.size(); i++) {
-		if (skip_methods.has(cd.methods[i].name))
-			continue;
+		if (skip_methods.has(cd.methods[i].name)) {
+			if (cd.methods[i].arguments.size() == 0 /* getter */ || (cd.methods[i].arguments.size() == 1 && cd.methods[i].return_type == "void" /* setter */)) {
+				continue;
+			}
+		}
 		methods.push_back(cd.methods[i]);
 		methods.push_back(cd.methods[i]);
 	}
 	}