04-30-2020, 11:31 AM
I suggest making it so that the 8-bit instruments stop playing as soon as you stop the sequence.
Since the 8-bits are generated straight from the browser itself, I wouldn't imagine that this would be terribly difficult to do.
I don't know much about code but I can imagine something like, inside of a while loop...
while (8-bit plays) {
if (stop button is pressed) {
stop8bit() //or exit(1) or break or something of that nature to leave the while loop
}
}
Since the 8-bits are generated straight from the browser itself, I wouldn't imagine that this would be terribly difficult to do.
I don't know much about code but I can imagine something like, inside of a while loop...
while (8-bit plays) {
if (stop button is pressed) {
stop8bit() //or exit(1) or break or something of that nature to leave the while loop
}
}