1#property description Mix between the two inputs
2#property inputCount 2
3void main() {
4    vec4 l = texture(iInputs[0], uv);
5    vec4 r = texture(iInputs[1], uv);
6    fragColor = mix(l, r, iIntensity * pow(defaultPulse, 2.));
7}
8