diff options
author | Juan Linietsky <reduzio@gmail.com> | 2016-08-23 19:29:07 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2016-08-23 19:29:07 -0300 |
commit | ad8f208bdbcd9d3334c4d57d2e5554dfdb3a36d0 (patch) | |
tree | 7724895bd5694ac68e121e35b7f89824e9b61906 /core/script_language.h | |
parent | 965fcf5996c734507fe548331597097e06b69ce2 (diff) | |
download | redot-engine-ad8f208bdbcd9d3334c4d57d2e5554dfdb3a36d0.tar.gz |
Proper function/property selection in visual script editing for property.
This one has an ordered list, built-in description, search, etc.
Diffstat (limited to 'core/script_language.h')
-rw-r--r-- | core/script_language.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/script_language.h b/core/script_language.h index aac94bb067..36ed11efec 100644 --- a/core/script_language.h +++ b/core/script_language.h @@ -114,6 +114,7 @@ public: virtual void update_exports() {} //editor tool virtual void get_script_method_list(List<MethodInfo> *p_list) const=0; + virtual void get_script_property_list(List<PropertyInfo> *p_list) const=0; Script() {} |