mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
08dfec20c5
* Update effects_configurator.html * Update content_effectsconfigurator.js * Update hyperion.js * Update de.json * Add argument QString "pythonScript" to runEffect function * Update Hyperion.h * Update EffectEngine.cpp * Update Hyperion.cpp * Update JsonClientConnection.cpp * Update schema-effect.json
43 lines
670 B
JSON
43 lines
670 B
JSON
{
|
|
"type":"object",
|
|
"required":true,
|
|
"properties":{
|
|
"command": {
|
|
"type" : "string",
|
|
"required" : true,
|
|
"enum" : ["effect"]
|
|
},
|
|
"tan" : {
|
|
"type" : "integer"
|
|
},
|
|
"priority": {
|
|
"type": "integer",
|
|
"required": true
|
|
},
|
|
"duration": {
|
|
"type": "integer",
|
|
"required": false
|
|
},
|
|
"effect": {
|
|
"type": "object",
|
|
"required": true,
|
|
"properties" :{
|
|
"name" : {
|
|
"type" : "string",
|
|
"required" : true
|
|
},
|
|
"args" : {
|
|
"type" : "object",
|
|
"required" : false
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
},
|
|
"pythonScript" : {
|
|
"type" : "string",
|
|
"required" : false
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|