random cue stack
Posted: Tue Aug 18, 2015 8:40 pm
how dp i make a random cue stack. say i have 100 cues and i want to load them into the stack in a random order. is there a way to do this automatically?
thx
thx
Code: Select all
int f;
void InitEffect()
{
}
void PreRenderEffect()
{
f = (f+1)%500;
if(f == 0)
CuelistGoto(random(0,99));
}