We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I need to be able to play tiny wav files one after the other(with BPM sync). At the moment I coded;
var sound = []; this.samples.forEach((item, i) => { sound[i] = new Pizzicato.Sound({ source: 'file', options: { path: item.sampleUrl } }, () => { sound[i].play(); }); })
My first problem is that all the files are playing like on a sprite(all at once). How to have them playing sequentially and only once please?
It looks like the library does not have a BPM function, am I correct? ie: Play the give files on a beat at 125BPM,135BPM and so on.
Thank you for the great library!
The text was updated successfully, but these errors were encountered:
Maybe you could consider Pizzicato.Group?
Sorry, something went wrong.
No branches or pull requests
Hello,
I need to be able to play tiny wav files one after the other(with BPM sync).
At the moment I coded;
My first problem is that all the files are playing like on a sprite(all at once). How to have them playing sequentially and only once please?
It looks like the library does not have a BPM function, am I correct? ie: Play the give files on a beat at 125BPM,135BPM and so on.
Thank you for the great library!
The text was updated successfully, but these errors were encountered: