This crate implements three extension traits that allow for conditional component, bundle and child insertion without the need for an intermediate EntityCommands
or EntityMut
binding.
* ConditionalInsertBundleExt
for EntityCommands
and EntityMut
\
Methods:
- insert_if
- insert_if_else
- insert_some
- insert_some_or
* ConditionalChildBuilderExt
for EntityCommands
\
Methods:
- with_children_if
* ConditionalWorldChildBuilderExt
for EntityMut
\
Methods:
- with_children_if
Supports Bevy 0.9
#
To add to a project either use:
cargo add conditional_commands
or manually add to your Cargo.toml:
toml
[dependencies]
conditional_commands = "0.9.0"
```rust use bevy::prelude::; use conditional_commands::;
struct FizzBuzzer;
struct Number(usize);
struct Fizz;
struct Buzz;
fn fizzbuzz
With Conditional Commands the intermediate EntityCommands binding in no longer required.
rust
fn fizz_buzz<const N: usize>(
mut commands: Commands
) {
for n in 1 ..= N {
commands
.spawn(FizzBuzzer)
.insert_if(0 < n % 3 && 0 < n % 5, || Number(n))
.insert_if(n % 3 == 0, || Fizz)
.insert_if(n % 5 == 0, || Buzz);
}
}
ConditionalInsertBundleExt
is also implemented for EntityMut
:
```rust
struct Even;
struct Odd;
fn exclusivesystem(world: &mut World) {
for n in 0..10 {
world.spawnempty().insertifelse(n % 2 == 0, || Even, || Odd);
}
}
``
Bundles passed to the
else/
ormethods don't need to be the same type,
as seen in the above example with the
Evenand
Odd` components.
Use insert_some
to insert the inner value of an optional bundle, if present.
rust
commands.spawn(MyBundle)
.insert_some(Some(OtherBundle::default()))
.insert_some_or(None::<MyThing>, AlternativeThing::default);
``` cargo run --example exclusive cargo run --example fizzbuzz cargo run --example insertif cargo run --example insertif2 cargo run --example withchildrenif
``` #
I haven't done any benchmarking. For performance critical systems it should be better to spawn entire bundles at once.
Earlier versions of this crate have both eager and lazy versions of each insertion method. I'm not sure the eager versions had any advantages (beyond no ||
), so they are gone.
I wasn't able to quite finesse the lifetimes to get a single generic child builder trait for both EntityCommands
and EntityMut
.