mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
fab0c208fe
* Add getEffectSchemas and loadEffectSchema function * Add getEffectSchemas function * add effect schema files to internal resources * Add loadEffectSchema and getEffectSchemas function * add effect schema resources * add getEffectSchemas function * extend handleSchemaGetCommand to get ... ... all available effect schemas add handleCreateEffectCommand function * add handleCreateEffectCommand function * include schema-create-effect.json file * add create-effect schema * Add schema-create-effect.json file * Add createEffect to hyperion-remote * Add createEffect function * add createEffect function * Create fade.schema.json * Add files via upload * Add files via upload * Update police.schema.json * Update EffectEngine.qrc.in * Update CMakeLists.txt
37 lines
648 B
JSON
37 lines
648 B
JSON
{
|
|
"type":"object",
|
|
"script" : "rainbow-swirl.py",
|
|
"title":"Rainbow swirl",
|
|
"required":true,
|
|
"properties":{
|
|
"rotation-time": {
|
|
"type": "number",
|
|
"title":"Rotation Time",
|
|
"default": 20.0,
|
|
"minimum" : 0.1,
|
|
"propertyOrder" : 1
|
|
},
|
|
"center_x": {
|
|
"type": "number",
|
|
"title":"Center X",
|
|
"default": 0.5,
|
|
"minimum" : 0.0,
|
|
"propertyOrder" : 2
|
|
},
|
|
"center_y": {
|
|
"type": "number",
|
|
"title":"Center Y",
|
|
"default": 0.5,
|
|
"minimum" : 0.0,
|
|
"propertyOrder" : 3
|
|
},
|
|
"reverse": {
|
|
"type": "boolean",
|
|
"title":"Reverse",
|
|
"default": false,
|
|
"propertyOrder" : 4
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|