Merge pull request #199 from luiq54/devel

Added HSV Adjust Dialog
This commit is contained in:
Manolis Papadeas 2020-04-15 16:05:44 +03:00 committed by GitHub
commit f27a3be6ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 365 additions and 8 deletions

View file

@ -70,7 +70,8 @@ func _ready() -> void:
"Rotate Image" : 0,
"Invert colors" : 0,
"Desaturation" : 0,
"Outline" : 0
"Outline" : 0,
"Adjust Hue/Saturation/Value":0
}
var help_menu_items := {
"View Splash Screen" : 0,
@ -387,6 +388,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: