diff options
author | lupoDharkael <izhe@hotmail.es> | 2018-10-03 16:12:38 +0200 |
---|---|---|
committer | lupoDharkael <izhe@hotmail.es> | 2018-10-24 01:07:33 +0200 |
commit | e19520e8fea78facaf6a2e2b2f0f1bc839c87c47 (patch) | |
tree | 442593b9f133565d5bf5e90296e7de1f206cf525 /scene/gui/color_picker.h | |
parent | c432ce4ee15fc396b2bccbbe2661b5bd34b9bee1 (diff) | |
download | redot-engine-e19520e8fea78facaf6a2e2b2f0f1bc839c87c47.tar.gz |
ColorPicker: extend access to presets from gds
Diffstat (limited to 'scene/gui/color_picker.h')
-rw-r--r-- | scene/gui/color_picker.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scene/gui/color_picker.h b/scene/gui/color_picker.h index 0166da7118..e32c830434 100644 --- a/scene/gui/color_picker.h +++ b/scene/gui/color_picker.h @@ -105,6 +105,9 @@ public: Color get_pick_color() const; void add_preset(const Color &p_color); + void erase_preset(const Color &p_color); + PoolColorArray get_presets() const; + void set_raw_mode(bool p_enabled); bool is_raw_mode() const; |