diff options
| author | skal <pascal.massimino@gmail.com> | 2026-03-07 20:03:30 +0100 |
|---|---|---|
| committer | skal <pascal.massimino@gmail.com> | 2026-03-07 20:03:30 +0100 |
| commit | ad9ee515d162d2aa23b64263e043d45add95615f (patch) | |
| tree | 4e0e2d71d3f8675b3b63901c97a01a070cde53cb /workspaces/main/timeline.seq | |
| parent | e4851ae9f310b44dab25eb979733281002c8953d (diff) | |
feat(effects): add Ntsc post-process effect with fisheye distortion
WGSL-only WgslEffect implementing barrel/fisheye distortion, RGB chroma
separation, scanlines, per-pixel temporal noise, rolling jitter line,
vignette, and warm NTSC phosphor tint. Applied across all main sequences.
handoff(Gemini): Ntsc effect added; 13 effects total, 35+1 tests expected.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'workspaces/main/timeline.seq')
| -rw-r--r-- | workspaces/main/timeline.seq | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/workspaces/main/timeline.seq b/workspaces/main/timeline.seq index e6ba4a5..a054a42 100644 --- a/workspaces/main/timeline.seq +++ b/workspaces/main/timeline.seq @@ -8,25 +8,28 @@ SEQUENCE 0.00 0 "intro" SEQUENCE 4.00 0 "rotating_cube" EFFECT + RotatingCube source -> temp1 0.00 4.00 - EFFECT + Placeholder temp1 -> temp2 1.00 4.00 - EFFECT + Scratch temp2 -> sink 1.00 4.00 + EFFECT + Ntsc temp1 -> sink 0.00 4.00 SEQUENCE 8.00 0 "scene 2" # Scene2 test - EFFECT + Scene2Effect source -> sink 0.0 4.0 + EFFECT + Scene2Effect source -> temp1 0.0 4.0 + EFFECT + Ntsc temp1 -> sink 0.00 4.00 SEQUENCE 12.00 1 "particles" # Particles -> Blur -> sink EFFECT + Particles source -> temp1 0.00 4.00 - EFFECT = GaussianBlur temp1 -> sink 0.00 4.00 + EFFECT = GaussianBlur temp1 -> temp2 0.00 4.00 + EFFECT + Ntsc temp2 -> sink 0.00 4.00 SEQUENCE 16.00 2 "hybrid_heptagon" # Heptagon -> Hybrid3D -> sink EFFECT + Heptagon source -> temp1 0.00 4.00 - EFFECT + Hybrid3D temp1 -> sink 0.00 4.00 + EFFECT + Hybrid3D temp1 -> temp2 0.00 4.00 + EFFECT + Ntsc temp2 -> sink 0.00 4.00 SEQUENCE 20.00 0 "heptagon_scene" - EFFECT + Scene1 source -> sink 0.00 8.00 + EFFECT + Scene1 source -> temp1 0.00 8.00 + EFFECT + Ntsc temp1 -> sink 0.00 8.00 SEQUENCE 28.00 0 "fade_test" # Heptagon -> Fade (placeholder) -> sink @@ -40,3 +43,7 @@ SEQUENCE 30.00 3 "complex_chain" EFFECT + GaussianBlur temp2 -> temp3 0.00 10.00 EFFECT + Placeholder temp3 -> temp4 0.00 10.00 EFFECT + Placeholder temp4 -> sink 0.00 10.00 + +SEQUENCE 40.00 0 "ntsc" + EFFECT + Scene1 source -> temp1 0.00 8.00 + EFFECT + Ntsc temp1 -> sink 0.00 8.00 |
