Files
video-shader-toys/shaders/temporal-ghost-trail/shader.json
Aiden ce5905373a
Some checks failed
CI / Native Windows Build And Tests (push) Has been cancelled
CI / React UI Build (push) Has been cancelled
CI / Windows Release Package (push) Has been cancelled
Added new shaders
2026-05-05 22:36:52 +10:00

33 lines
699 B
JSON

{
"id": "temporal-ghost-trail",
"name": "Temporal Ghost Trail",
"description": "Blends older pre-layer input frames into the current layer input for a soft temporal trail.",
"category": "Temporal",
"entryPoint": "shadeVideo",
"temporal": {
"enabled": true,
"historySource": "preLayerInput",
"historyLength": 12
},
"parameters": [
{
"id": "currentMix",
"label": "Current Mix",
"type": "float",
"default": 0.72,
"min": 0.0,
"max": 1.0,
"step": 0.01
},
{
"id": "trailMix",
"label": "Trail Mix",
"type": "float",
"default": 0.28,
"min": 0.0,
"max": 1.0,
"step": 0.01
}
]
}