simple sine visual

This commit is contained in:
Marco
2025-04-30 20:20:13 +02:00
parent 3309e1bc45
commit 93eb1b1889
10 changed files with 381 additions and 21 deletions

View File

@@ -1,21 +1,65 @@
{
"name": "GetiyoSimpleVisual",
"type": "normal",
"author": "marco",
"category": "AIFx",
"default_reference_properties": {},
"default_module_properties": {},
"triggers": {},
"conditions": {
"server": {},
"client": {}
},
"default_size": {
"width": 300,
"height": 300
},
"default_location": {
"x": 100,
"y": 100
}
}
"name": "GetiyoSimpleVisual",
"type": "normal",
"author": "marco",
"category": "AIFx",
"default_reference_properties": {
"amplitude": {
"type": "slider",
"title": "Amplitude",
"description": "Controls the height of the sine wave",
"value": 50,
"min": 5,
"max": 100,
"step": 1
},
"frequency": {
"type": "slider",
"title": "Frequency",
"description": "Controls how many waves are displayed",
"value": 1,
"min": 0.1,
"max": 5,
"step": 0.1
},
"speed": {
"type": "slider",
"title": "Speed",
"description": "Controls how fast the wave animates",
"value": 1,
"min": 0,
"max": 5,
"step": 0.1
},
"color": {
"type": "color",
"title": "Color",
"description": "The color of the sine wave",
"value": "#4287f5"
},
"lineWidth": {
"type": "slider",
"title": "Line Width",
"description": "Thickness of the sine wave line",
"value": 3,
"min": 1,
"max": 10,
"step": 1
}
},
"default_module_properties": {},
"triggers": {},
"conditions": {
"server": {},
"client": {}
},
"default_size": {
"width": 300,
"height": 300
},
"default_location": {
"x": 100,
"y": 100
},
"build": "0001"
}