ColorPicker

Inherits: BoxContainer < Container < Control < CanvasItem < Node < Object

Category: Core

Brief Description

Color picker control.

Properties

Colorcolor
booldeferred_mode
booledit_alpha
boolraw_mode

Methods

voidadd_preset ( Color color )
voiderase_preset ( Color color )
PoolColorArrayget_presets ( ) const

Theme Properties

Textureadd_preset
Texturecolor_hue
Texturecolor_sample
inth_width
intlabel_width
intmargin
Texturepreset_bg
Texturescreen_picker
intsv_height
intsv_width

Signals

  • color_changed ( Color color )

Emitted when the color is changed.


  • preset_added ( Color color )

Emitted when a preset is added.


  • preset_removed ( Color color )

Emitted when a preset is removed.

Description

Control node displaying a color picker widget. It’s useful for selecting a color from an RGB/RGBA colorspace.

Property Descriptions

Setterset_pick_color(value)
Getterget_pick_color()

The currently selected color.


Setterset_deferred_mode(value)
Getteris_deferred_mode()

If true, the color will apply only after the user releases the mouse button, otherwise it will apply immediately even in mouse motion event (which can cause performance issues).


Setterset_edit_alpha(value)
Getteris_editing_alpha()

If true, shows an alpha channel slider (transparency).


Setterset_raw_mode(value)
Getteris_raw_mode()

If true, allows the color R, G, B component values to go beyond 1.0, which can be used for certain special operations that require it (like tinting without darkening or rendering sprites in HDR).

Method Descriptions

  • void add_preset ( Color color )

Adds the given color to a list of color presets. The presets are displayed in the color picker and the user will be able to select them. Note: the presets list is only for this color picker.


  • void erase_preset ( Color color )

Remove the given color from the list of color presets of this color picker.


Returns the list of colors in the presets of the color picker.