Hi. I’m trying to build a style that uses multiple Special Ability controls to switch between styles, but I was wondering if it’s possible for them to have different transition effects? As I understand it, in a normal Special Abilities style like the following:
Layers<
ColorSelect<AltF,TrFade<1000>,RgbArg<BASE_COLOR_ARG,Red>,RgbArg<ALT_COLOR_ARG,Green>,RgbArg<ALT_COLOR2_ARG,Blue>,RgbArg<ALT_COLOR3_ARG,Magenta>>,
TransitionEffectL<TrDoEffectAlwaysX<TrInstant,EFFECT_ALT_SOUND,ModF<Sum<AltF,Int<1>>,Int<3>>>,EFFECT_USER1>,
TransitionEffectL<TrDoEffectAlwaysX<TrInstant,EFFECT_ALT_SOUND,ModF<Sum<AltF,Int<-1>>,Int<3>>>,EFFECT_USER2>,
TransitionEffectL<TrDoEffectAlwaysX<TrInstant,EFFECT_ALT_SOUND,Sum<Int<0>,Int<0>>>,EFFECT_USER3>>
Every transition effect using the USER1, USER2 or USER3 controls would be determined by, in this case, TrFade in the ColorSelect style.
If it’s possible, I would like to build a style that can do the following:
Use Special Abilities to change between multiple styles, e.g.
Red
Green
Blue
Magenta
USER1 switches to the next style, simple fade/instant transition
USER2 switches to the previous style, simple fade/instant transition (same as USER1)
USER3 switches to the first style (in this case Red) but has a different, longer transition effect
Is this something that’s possible?