mirror of
https://github.com/tonytins/CozyPixelStudio.git
synced 2025-06-25 21:34:43 -04:00
Added HSV Adjust Dialog
This commit is contained in:
parent
bdd3cdf45e
commit
2b8796aacc
5 changed files with 318 additions and 3 deletions
|
@ -70,7 +70,8 @@ func _ready() -> void:
|
|||
"Rotate Image" : 0,
|
||||
"Invert colors" : 0,
|
||||
"Desaturation" : 0,
|
||||
"Outline" : 0
|
||||
"Outline" : 0,
|
||||
"Adjust Hue/Sat/Val":0
|
||||
}
|
||||
var help_menu_items := {
|
||||
"View Splash Screen" : 0,
|
||||
|
@ -385,6 +386,9 @@ func image_menu_id_pressed(id : int) -> void:
|
|||
7: # Outline
|
||||
$OutlineDialog.popup_centered()
|
||||
Global.can_draw = false
|
||||
8: # HSV
|
||||
$HSVDialog.popup_centered()
|
||||
Global.can_draw = false
|
||||
|
||||
func help_menu_id_pressed(id : int) -> void:
|
||||
match id:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue