Implements three extension traits
* ConditionalInsertComponentsExt
for EntityCommands
and EntityMut
\
with methods:
- insert_if
- insert_if_else
- insert_bundle_if
- insert_bundle_if_else
- insert_some
- insert_bundle_some
* ConditionalChildBuilderExt
for EntityCommands
\
with method:
- with_children_if
* ConditionalWorldChildBuilderExt
for EntityMut
\
with method:
- with_children_if
that allow for conditional component, bundle, and child insertion without the need for an intermediate EntityCommands
or EntityMut
binding.
* Supports Bevy 0.7
#
insert_some
methods. If present, insert the inner value of an Option
.Implementated traits for EntityMut
.
*_if_else
methods.
```rust use conditional_commands::*;
struct Even;
struct Odd;
fn exclusivesystem(world: &mut World) { for n in 0..10 { world.spawn() .insertif_else(n % 2 == 0, Even, Odd); } } ```
#
Add to your Cargo.toml [Dependencies]
section
conditional_commands = "0.2"
Then access with the use
declaration
rust
use conditional_commands::*;
#
```rust use bevy::prelude::*;
struct Number(usize);
struct Fizz;
struct Buzz;
fn fizzbuzz
```rust use conditional_commands::*;
fn fizzbuzz