summaryrefslogtreecommitdiffstats
path: root/editor/editor_properties_array_dict.h
diff options
context:
space:
mode:
authorMrCdK <contact@mrcdk.com>2018-12-03 04:41:18 +0100
committerMrCdK <contact@mrcdk.com>2018-12-03 19:05:22 +0100
commit9c91cc00eae9e56477d414ce0843b10318fac268 (patch)
treec2e6ddccc64ecd365c25a2ad9f64ada8cf75ef26 /editor/editor_properties_array_dict.h
parent8dd00ed1762c4956b3231d709ce0d01ee9b306c8 (diff)
downloadredot-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.h5
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();
};