Re-introduce hsv transform into config schema. (#336)

iOS app needs this (at the moment) and i needs to be able to set the inital config from the config file.
This commit is contained in:
penfold42 2016-12-17 19:23:22 +11:00 committed by redPanther
parent d59c94421d
commit cb7e2ff1c0
1 changed files with 17 additions and 0 deletions

View File

@ -233,6 +233,23 @@
"type" : "string",
"required" : true
},
"hsv" : {
"type" : "object",
"required" : false,
"properties" : {
"saturationGain" : {
"type" : "number",
"required" : false,
"minimum" : 0.0
},
"valueGain" : {
"type" : "number",
"required" : false,
"minimum" : 0.0
}
},
"additionalProperties" : false
},
"hsl" :
{
"type":"object",