-
multiple parameters per expression from a checkbox
hey dudes,
I”m rigging an IK puppet and have the IK direction switches that need to dynamically change based on checkbox controls.
I have a CheckBox that flops the puppet from side to side by hiding the appropriate artwork. It also inverts the IK chain direction. But I want to be able to flop the chain back if i need the arm direction to invert without turning the whole body.
Can i call multiple states in a single expression? Here’s what i have…
if (thisComp.layer(“EffectsLayer01”).effect(“Checkbox”)(“Checkbox”)== 1) 100 else 0
but I want to make it like this:
if (thisComp.layer(“EffectsLayer01”).effect(“Checkbox”)(“Checkbox”)== 1) 100 else 0
or
if (thisComp.layer(“EffectsLayer02”).effect(“Checkbox”)(“Checkbox”)== 1) 0 else 100Hopefully What i’m asking for makes sense….