ConceptCreator/testModel/gamesystems/Weather.json
Sebastian Böckelmann 413d5eb925
All checks were successful
E2E Testing / test (push) Successful in 1m31s
Fix missing adding Button in action editor
2024-03-18 16:43:50 +01:00

41 lines
1001 B
JSON

{
"componentName": "Weather",
"componentDescription": "",
"states": [
{
"initial": false,
"conditions": [
{
"minValue": 0,
"maxValue": "50"
}
],
"stateLabel": "Sonnig",
"stateDescription": "Die Sonne scheint"
},
{
"initial": false,
"conditions": [
{
"minValue": "50",
"maxValue": "75"
}
],
"stateLabel": "Wolkig",
"stateDescription": ""
}
],
"transitions": [
{
"scriptAccountActions": [
{
"changingValue": 10,
"scriptAccount": "Temperature"
}
],
"scriptAccountConditions": [],
"startingState": "Sonnig",
"endingState": "Wolkig"
}
]
}