Added trigger
All checks were successful
CI / React UI Build (push) Successful in 11s
CI / Native Windows Build And Tests (push) Successful in 1m33s
CI / Windows Release Package (push) Successful in 2m4s

This commit is contained in:
2026-05-06 14:01:23 +10:00
parent e59677c212
commit 6502344d0a
16 changed files with 235 additions and 8 deletions

View File

@@ -0,0 +1,59 @@
{
"id": "trigger-ripple",
"name": "Trigger Ripple",
"description": "A water-drop style ripple that expands across the video whenever the trigger is pressed.",
"category": "Utility",
"entryPoint": "shadeVideo",
"parameters": [
{
"id": "drop",
"label": "Drop",
"type": "trigger"
},
{
"id": "center",
"label": "Center",
"type": "vec2",
"default": [0.5, 0.5],
"min": [0.0, 0.0],
"max": [1.0, 1.0],
"step": [0.01, 0.01]
},
{
"id": "strength",
"label": "Strength",
"type": "float",
"default": 0.12,
"min": 0.0,
"max": 0.3,
"step": 0.001
},
{
"id": "speed",
"label": "Duration",
"type": "float",
"default": 0.3,
"min": 0.3,
"max": 5.0,
"step": 0.01
},
{
"id": "width",
"label": "Wave Width",
"type": "float",
"default": 0.09,
"min": 0.01,
"max": 0.25,
"step": 0.001
},
{
"id": "damping",
"label": "Damping",
"type": "float",
"default": 0.25,
"min": 0.05,
"max": 3.0,
"step": 0.05
}
]
}