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
The callback for AudioSource#allInstancesFinished never be called.
Steps To Reproduce
final source = soloud.loadAsset('...');
source.allInstancesFinished.first.then(
// The callback never be called
(_) => soloud.disposeSound(source))
);
soloud.play(source);
Expected Behavior
// Should be called when playing is finished
(_) => soloud.disposeSound(source))