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
53 lines
998 B
JSON
53 lines
998 B
JSON
{
|
|
"type":"object",
|
|
"script" : "snake.py",
|
|
"title":"edt_eff_snake_header",
|
|
"required":true,
|
|
"properties":{
|
|
"color": {
|
|
"type": "array",
|
|
"title":"edt_eff_color",
|
|
"format":"colorpicker",
|
|
"default": [255,0,0],
|
|
"items" : {
|
|
"type": "integer",
|
|
"minimum": 0,
|
|
"maximum": 255
|
|
},
|
|
"minItems": 3,
|
|
"maxItems": 3,
|
|
"propertyOrder" : 1
|
|
},
|
|
"background-color": {
|
|
"type": "array",
|
|
"title":"edt_eff_color",
|
|
"format":"colorpicker",
|
|
"default": [0,0,0],
|
|
"items" : {
|
|
"type": "integer",
|
|
"minimum": 0,
|
|
"maximum": 255
|
|
},
|
|
"minItems": 3,
|
|
"maxItems": 3,
|
|
"propertyOrder" : 2
|
|
},
|
|
"rotation-time": {
|
|
"type": "number",
|
|
"title":"edt_eff_rotationtime",
|
|
"default": 12.0,
|
|
"minimum" : 0.1,
|
|
"append" : "edt_append_s",
|
|
"propertyOrder" : 3
|
|
},
|
|
"percentage": {
|
|
"type": "integer",
|
|
"title":"edt_eff_length",
|
|
"default": 10,
|
|
"append" : "edt_append_percent",
|
|
"propertyOrder" : 4
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|