Best way to wait/sleep/delay?

For anyone looking for quick, general answer for how to wait/sleep in Juce, this command will wait for one second

Time::waitForMillisecondCounter(Time::getMillisecondCounter() + 1000);
4 Likes