View Single Post
Old 08-17-2015, 01:38 PM   #2
Tale
Human being with feelings
 
Tale's Avatar
 
Join Date: Jul 2008
Location: The Netherlands
Posts: 3,653
Default

Well, that shouldn't be too hard... Just add this slider:

Code:
slider5:0<0,1,1{Never,At Least Once}>Out Of Phase
And then a few lines below replace this line:

Code:
phase > 0 ? slider3=1:slider3=0;
With this line:

Code:
phase > 0 ? slider3=1:(slider3=0;slider5=1);
And to be consistent you should probably also change:

Code:
sliderchange(1+2+4);
To:

Code:
sliderchange(1+2+4+16);
But for reasons unknown sliderchange() seems no longer needed at all.
Tale is offline   Reply With Quote