Files
video-shader-toys/shaders/temporal-ghost-trail/shader.json
Aiden a0cc86f189
All checks were successful
CI / React UI Build (push) Successful in 10s
CI / Native Windows Build And Tests (push) Successful in 2m20s
CI / Windows Release Package (push) Successful in 2m28s
description updates
2026-05-08 18:11:26 +10:00

35 lines
848 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,
"max": 1,
"step": 0.01,
"description": "Contribution of the current frame in the temporal blend."
},
{
"id": "trailMix",
"label": "Trail Mix",
"type": "float",
"default": 0.28,
"min": 0,
"max": 1,
"step": 0.01,
"description": "Contribution of older frames in the temporal blend."
}
]
}