audionimbus 0.15.0

A safe wrapper around Steam Audio that provides spatial audio capabilities with realistic occlusion, reverb, and HRTF effects, accounting for physical attributes and scene geometry.
Documentation
# Examples

This directory contains two demos that showcase different ways to use [`audionimbus`](..).

## Core demo

The [`core`](./core) demo builds directly on the crate's core primitives and the `wiring` module.
A source orbits the listener inside a reflective room, making it easy to hear the direct path, early reflections, and late reverb in isolation.

Run it with:

```bash
cargo run --release -p core-demo
```

## Bevy demo

The [`bevy`](./bevy) demo shows the same ideas in a Bevy app.

It uses the `audionimbus::bevy` integration to mirror scene state from ECS into the simulation, then feeds the simulation output into a custom audio node for playback.

Run it with:

```bash
cargo run --release -p bevy-demo
```