mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
864538f188
* update translation * add css * Update JsonClientConnection.cpp * add effectscreator * remove udp * fix title c/p issue for sparks [skip ci] * update schemas [skip ci] * typo [skpi ci]
55 lines
1022 B
JSON
55 lines
1022 B
JSON
{
|
|
"type":"object",
|
|
"script" : "police.py",
|
|
"title":"Police",
|
|
"required":true,
|
|
"properties":{
|
|
"color_one": {
|
|
"type": "array",
|
|
"title":"Color one",
|
|
"default": [255,0,0],
|
|
"items" : {
|
|
"type": "integer",
|
|
"minimum": 0,
|
|
"maximum": 255
|
|
},
|
|
"minItems": 3,
|
|
"maxItems": 3,
|
|
"propertyOrder" : 1
|
|
},
|
|
"color_two": {
|
|
"type": "array",
|
|
"title":"Color two",
|
|
"default": [0,0,255],
|
|
"items" : {
|
|
"type": "integer",
|
|
"minimum": 0,
|
|
"maximum": 255
|
|
},
|
|
"minItems": 3,
|
|
"maxItems": 3,
|
|
"propertyOrder" : 2
|
|
},
|
|
"colors_count": {
|
|
"type": "integer",
|
|
"title":"Colors count",
|
|
"default": "10",
|
|
"propertyOrder" : 3
|
|
},
|
|
"rotation-time": {
|
|
"type": "number",
|
|
"title":"Rotation time",
|
|
"default": 2.0,
|
|
"minimum" : 0.1,
|
|
"propertyOrder" : 4
|
|
},
|
|
"reverse": {
|
|
"type": "boolean",
|
|
"title":"Reverse direction",
|
|
"default": false,
|
|
"propertyOrder" : 5
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|