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]
37 lines
657 B
JSON
37 lines
657 B
JSON
{
|
|
"type":"object",
|
|
"script" : "knight-rider.py",
|
|
"title":"Knight Rider",
|
|
"required":true,
|
|
"properties":{
|
|
"speed": {
|
|
"type": "number",
|
|
"title":"Speed",
|
|
"default": 1.0,
|
|
"minimum": 0.1,
|
|
"propertyOrder" : 1
|
|
},
|
|
"fadeFactor": {
|
|
"type": "number",
|
|
"title":"Fade Factor",
|
|
"default": 0.7,
|
|
"minimum" : 0.0,
|
|
"propertyOrder" : 1
|
|
},
|
|
"color": {
|
|
"type": "array",
|
|
"title":"Color",
|
|
"default": [255,0,0],
|
|
"items" : {
|
|
"type": "integer",
|
|
"minimum": 0,
|
|
"maximum": 255
|
|
},
|
|
"minItems": 3,
|
|
"maxItems": 3,
|
|
"propertyOrder" : 3
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|