mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
9cc6c75633
* Add new Effects * add schema file for gif based effects * add background color to snake effect * add background color to snake effect * Update schema file for snake effect * Add function getImage * add function getImage * optimize lights.gif * Add format to GIF schema
32 lines
556 B
JSON
32 lines
556 B
JSON
{
|
|
"type":"object",
|
|
"script" : "gif.py",
|
|
"title":"edt_eff_gif_header",
|
|
"required":true,
|
|
"properties":{
|
|
"image": {
|
|
"type": "string",
|
|
"title":"edt_eff_image",
|
|
"format" : "file",
|
|
"default": "",
|
|
"propertyOrder" : 1
|
|
},
|
|
"fps": {
|
|
"type": "integer",
|
|
"title":"edt_eff_fps",
|
|
"default": 25,
|
|
"minimum" : 1,
|
|
"maximum" : 100,
|
|
"step" : 1,
|
|
"propertyOrder" : 2
|
|
},
|
|
"reverse": {
|
|
"type": "boolean",
|
|
"title":"edt_eff_reversedirection",
|
|
"default": false,
|
|
"propertyOrder" : 3
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|