makepad/apps/vj/resources/effects/138_trans_grain_dissolve.splash
Admin cb49b032df vjfx: 104 presets, engine hooks + hold stage, the videomesh engine, the audio picture, livecodable effects, and mp4 thumbnail sheets
Squashed from work; the fine-grained history is under tag archive/work-2026-08-26:
- vjfx: 104 new presets — the transition lane fills out and the screen family goes wide
- vjfx: three lanes land — engine hooks + hold stage, the videomesh engine, and the audio picture
- vj: the thumbnail pipeline becomes one honest machine, and effects go livecodable
- vj: thumbnails become mp4 — hardware-coded sheets at measured-4K cells, and the bake stops racing the GPU
- store: the ceremony dies — batch publish, one transaction, and the engine stops re-reading its own log
- store: the ceremony dies — batch publish, one transaction, and the engine stops re-reading its own log
- vj: the console grows real transports, and the deck stops lying about reverse
- vj: reverse earns a memory, and the effects stop aging
- fab: a 3D creation shell and the viewer built on it
2026-08-26 08:49:48 +02:00

29 lines
1.1 KiB
Text

// GRAIN DISSOLVE — the frame breaks into a fine cell grid and each cell
// pops to deck B at its own hashed moment, so the dissolve reads as
// random film grain rather than a smooth fade. GRAIN sets the cell
// density.
{
name: "Grain Dissolve"
engine: "transition"
p1: 0.5
dials: [
{name: "SOFT", bind: "p0", default: 0.1},
{name: "GRAIN", bind: "p1", default: 0.5},
{name: "DIP", bind: "p2", default: 0.0}
]
shader: draw.DrawVjFxDuo {
trans: fn(uv: vec2, t: float) -> vec4 {
let n = 24.0 + floor(self.user.y * 56.0)
let cx = floor(uv.x * n)
let cy = floor(uv.y * n * 0.5625)
let h = cx * 12.9898 + cy * 78.233 + 3.0
let field = fract(sin(h) * 43758.5453)
let soft = 0.01 + self.user.x * 0.25
let tt = t * (1.0 + 2.0 * soft) - soft
let m = smoothstep(tt - soft, tt + soft, field)
let c = self.deck_b(uv).mix(self.deck_a(uv), m)
let dim = 1.0 - 4.0 * clamp(t, 0.0, 1.0) * (1.0 - clamp(t, 0.0, 1.0)) * self.user.z * 0.9
return vec4(c.xyz * dim, 1.0)
}
}
}