Bevy FunDSP

Bevy tracking CI

A third party Bevy plugin that integrates [FunDSP] into [Bevy].

bevy_fundsp supports integration for bevy_audio and [bevy_kira_audio]. (bevy_oddio coming soon!)

WARNING: Lower your volume before testing your sounds!

Remember to lower the volume by passing the settings with DspManager::add_graph_with_settings or multiplying your DSP graph with a low constant (lower than 1.0).

Usage

```rust no_run

![allow(clippy::precedence)]

use bevy_fundsp::prelude::; use bevy::prelude::;

fn main() { App::new() .addplugins(DefaultPlugins) .addplugin(DspPlugin) .addstartupsystem(initdsp) .addstartupsystemtostage( StartupStage::PostStartup, playnoise ) .run(); }

fn white_noise() -> impl AudioUnit32 { white() >> split::() * 0.2 }

fn initdsp(mut dspmanager: ResMut) { dspmanager.addgraph(white_noise, 30.0); // length is in seconds }

fn playnoise(dspassets: Res, audio: Res

```

Compatibility

| bevy_fundsp | bevy | bevy_kira_audio | fundsp | | ------------- | ------ | -------------------------- | -------- | | main | main | main, branch = bevy_main | main | | 0.1.0 | 0.8 | 0.11 | 0.6 |

License

bevy_fundsp is primarily distributed under the terms of both the MIT license and the Apache License (Version 2.0).

See LICENSE-APACHE and LICENSE-MIT for details.

Acknowledgement

I'd like to say thanks to the authors of [FunDSP] and [Bevy] for making this plugin possible.