What is refconPV for arbitary data
Hello,
In an after effects plugin we try to add ramp like user interface.This seem to require using arbitrary data creation. Then the only plugin example about that is the colorgrid in the sdk.
The documentation doesnt tell much either.
so i wonder what shoud be teh value of : def.u.arb_d.refconPV
in the colorgrid plugin it is
#define ARB_REFCON (void*)0xDEADBEEFDEADBEEF
PF_ADD_ARBITRARY2( "Color Grid",
UI_GRID_WIDTH,
UI_GRID_HEIGHT,
0,
PF_PUI_CONTROL | PF_PUI_DONT_ERASE_CONTROL,
def.u.arb_d.dephault,
COLOR_GRID_UI,
ARB_REFCON);
i would be really happy to get insight on what ivalue i should use their. what if i have two different arbitrary dat in the same plugin?
regards