bundle_bundle
Extension trait for Bundle with one method bundle that provides an alternative to tuples for building anonymous bundles.
Supports Bevy 0.9
Usage
Add to your project with:
cargo add bundle_bundle
Now where you used a tuple struct:
commands.spawn;
You can instead use:
use BundleBundleExt;
commands.spawn;
Examples
cargo run --example hello_world