Extension trait for Bundle with one method bundle
that provides an alternative to tuples for building anonymous bundles.
Supports Bevy 0.9
Add to your project with:
cargo add bundle_bundle
Now where you used a tuple struct:
rust
commands.spawn((
Text2dBundle::from_section("message", text_style),
Background(Color::NAVY),
MessageMarkerComponent,
));
You can instead use:
```rust use bundle_bundle::BundleBundleExt;
commands.spawn( Text2dBundle::fromsection("message", textstyle) .bundle(BackgroundColor(Color::NAVY)) .bundle(MessageMarkerComponent) ); ```
cargo run --example hello_world