Trait bevy_kira_audio::AudioStream[][src]

pub trait AudioStream: Debug + Send + Sync + 'static {
    fn next(&mut self, dt: f64) -> Frame;
}
Expand description

An audio stream producing frames

Required methods

Produce the next frame in the audio stream

Implementors