Sorry for the newbie question. I’m currently an undergrad learning FoxDot.
I’m writing a script in Python that emulates the structure of a song (verse, bridge etc). I want to schedule an instrument to play after a certain amount of beats but can’t figure it out. I have tried:
`Clock.schedule(myfunction, Clock.now() + 2)’
but it just plays from beat number 1. Is there a way to schedule an instrument that starts to play at a specific time in code? Thanks in advance.