-
Value increase with active layer.
Hello, I’m trying to use ‘roughen edges’ and increase the ‘evolution’ value for every active layer found in the “clips” comp? AE2020
val = 0;
C = comp("Clips");
for (i = 1; i <= C.numLayers; i++){
L = C.layer(i);
if (L.hasVideo && L.active){
val = 100;
break;
}
}
valOriginal Source: https://forums.creativecow.net/thread/227/22064#22071