diff options
author | MrCdK <contact@mrcdk.com> | 2018-12-03 04:41:18 +0100 |
---|---|---|
committer | MrCdK <contact@mrcdk.com> | 2018-12-03 19:05:22 +0100 |
commit | 9c91cc00eae9e56477d414ce0843b10318fac268 (patch) | |
tree | c2e6ddccc64ecd365c25a2ad9f64ada8cf75ef26 /editor/editor_properties_array_dict.h | |
parent | 8dd00ed1762c4956b3231d709ce0d01ee9b306c8 (diff) | |
download | redot-engine-9c91cc00eae9e56477d414ce0843b10318fac268.tar.gz |
Arrays now parse the hint_string in the new inspector.
Also, if a hint_string is given, when changing the size of an Array the new elements are initialized to the default value of that type hint.
Diffstat (limited to 'editor/editor_properties_array_dict.h')
-rw-r--r-- | editor/editor_properties_array_dict.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/editor/editor_properties_array_dict.h b/editor/editor_properties_array_dict.h index d5eecd9106..46c9bebf2a 100644 --- a/editor/editor_properties_array_dict.h +++ b/editor/editor_properties_array_dict.h @@ -93,6 +93,9 @@ class EditorPropertyArray : public EditorProperty { EditorSpinSlider *page; HBoxContainer *page_hb; Variant::Type array_type; + Variant::Type subtype; + PropertyHint subtype_hint; + String subtype_hint_string; void _page_changed(double p_page); void _length_changed(double p_page); @@ -108,7 +111,7 @@ protected: void _notification(int p_what); public: - void setup(Variant::Type p_array_type); + void setup(Variant::Type p_array_type, const String &p_hint_string = ""); virtual void update_property(); EditorPropertyArray(); }; |