PF_ADD_FLOAT_SLIDERX doesn't respect various flags! Why?
Hi gang!
I am using PF_ADD_FLOAT_SLIDERX float sliders with the following flags to make them not animatable (make the animation stopwatch icon disappear) and to supervise it so as to affect other parameters when it is adjusted:
def.flags = PF_ParamFlag_SUPERVISE |
PF_ParamFlag_CANNOT_TIME_VARY |
PF_ParamFlag_CANNOT_INTERP;
However, the animation stopwatch icon is still there. Likewise, in my UserChangedParam function it doesn't recognize it when I click / adjust that parameter.
If I change it from PF_ADD_FLOAT_SLIDERX to PF_ADD_SLIDER, the animation stopwatch icon disappears and when I click on it, it notfies me so the supervision works. Most other parameters also respect these flags so why doesn't PF_ADD_FLOAT_SLIDERX?
Is there another type of float slider I should be using that accepts these flags? Or am I missing a step somewhere?
Thanks,
-Richard
