Hey all, got a situation where I would like to automate 2 specific blend modes in a composite TOP, already have pulse and count chops going, would just like to know how to get them to jump from 11 to 22 instead of counting up from 11-22.
You could just count between [1-2]
and use a Math CHOP
to multiply by 11
. Else you could write an expression in the blending mode parameter, something like 11 if my_count == 1 else 22
.
I think the more general solution is to use a lookupCHOP.
1 Like