Question
Show default slider
I’ve set the PF_OutFlag2_PARAM_GROUP_START_COLLAPSED_FLAG flag
In ParamsSetup I add the PF_ParamFlag_COLLAPSE_TWIRLY flag to my parameter
AEFX_CLR_STRUCT(def);
def.flags = PF_ParamFlag_COLLAPSE_TWIRLY;
PF_ADD_FLOAT_SLIDERX(
STR(StrID_Gain_Param_Name),
SKELETON_GAIN_MIN,
SKELETON_GAIN_MAX,
SKELETON_GAIN_MIN,
SKELETON_GAIN_MAX,
SKELETON_GAIN_DFLT,
PF_Precision_HUNDREDTHS,
0,
0,
GAIN_DISK_ID
);However when I apply the plugin to a layer my parameter is collapsed and does not display the slider What am I doing wrong?
