How to make it LOOP?
Was following the tutorial of Nine Between's "VEX isn't Scary", trying to make a loop video. I got every part correct except my loop just cuts off in between. I don't understand why is it happening. Here's my VEX expression:-
float blend = frac(@Time) + @P.x + @P.y;
float positionBlend = chramp('position_blend', blend);
v@P = lerp(v@P, 0, positionBlend);
v@Cd = chramp('color_value', positionBlend);