#Randomizer from Assets Library

3 messages · Page 1 of 1 (latest)

devout steppe
#

The randomizer currently works only once during a face event. How can it be configured to operate multiple times?

scarlet plover
#

Would you want a separate or same event to restart ?

#

you can open Randomizer.js and replace the code at the end event.bind(function (eventData) { running = false; }); with the next : event.bind(function (eventData) { if (running){ running = false; } else { running = true; delayedEvent.reset(0); } });