I need to play some sounds in howler.js the thing is that I don't know how to chain it.
For example, at string BCG
would need to play b.ogg then c.ogg and finally g.ogg
If I just use (after loading):
sound.play('b');
sound.play('c');
sound.play('g');
All of them start and overlap which isn't what I need.
I see there's a onend property, however can't figure out how to use it properly.
Regards.