You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
load_sound function returns before the sound is actually loaded. When trying to play it right away, it will be queued until it is really loaded and played then.
loading sounds is very slow (30 files 10-20kB each take well over 10 seconds, with seemingly exponential growth). load_sound functions return almost right away, but all sounds you try to play during these 10 or more seconds are queued and then played at almost the same time.
Disabling macroquad audio module (via default-features = false in cargo.toml) does not actually disable underlaying quad-snd import of native sound library. Because of this, you cannot disable macroquad audio and use another crate (as suggested in subcrates enable default features for the main crate #389 this might be connected to profiler crate)
The text was updated successfully, but these errors were encountered:
I've had multiple issues with sounds:
The text was updated successfully, but these errors were encountered: