summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
Diffstat (limited to 'editor')
-rw-r--r--editor/property_selector.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/property_selector.cpp b/editor/property_selector.cpp
index a8c97be936..ff3fc64907 100644
--- a/editor/property_selector.cpp
+++ b/editor/property_selector.cpp
@@ -210,6 +210,9 @@ void PropertySelector::_update_search() {
methods.push_back(MethodInfo("*Script Methods"));
Object::cast_to<Script>(obj)->get_script_method_list(&methods);
+ // TODO: Filter out things unsuitable for explicit calls, like constructors.
+
+ // TODO: We should handle script class hierarchies somehow. Right now we don't; it's unclear where this functionality should live.
}
StringName base = base_type;