Added HSV Adjust Dialog

This commit is contained in:
luiq54 2020-04-13 19:40:17 +05:30
parent bdd3cdf45e
commit 2b8796aacc
5 changed files with 318 additions and 3 deletions

View file

@ -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: