@aulicon said in Polyphony in the age of timers:
@d-healey Sounds genius but I'm having difficulty following the sub-dividing the timer part.
Could you please show a snippet of the code where you do so?
so lets say you have two things you want to happen.. one every 200 milliseconds, one every 150 milliseconds...
so you run a timer at 50 milliseconds and each time it executes you add 1 to a counter...
when the counter modulo 4 = 0 (if counter % 4 == 0) do the first thing, when the counter modulo 3 = 0 do the second thing...
This is exactly how we used to do it in Kontakt...