An extension trait for Commands that allows you to send events from a system without having to retrieve a typed EventWriter SystemParam.
#
Add to your project with the command
cargo add commands_send_event
or add directly add the dependency to your Cargo.toml
toml
[dependencies.commands_send_event]
version = "0.6"
then the send_event
method is available on Commands:
```rust use commandssendevent::CommandsSendEvent;
struct MyEventA(String);
struct MyEventB(i32);
fn sender(
mut commands: Commands
) {
commands.sendevent(MyEventA("Hello, World"));
commands.sendevent(MyEventB(42));
}
The `/examples` folder has two examples you can run with:
cargo run --example basic_usage
cargo run --example schedule
```
AnyEventWriter is a facade over Commands that implements SystemParam.
#
This crate is a bit redundant now since Bevy 0.8 as sending events using World
is very easy. With commands.add
you can queue a closure to dispatch an event like so:
rust
commands.add(|world: &mut World|
world.send_event(MyEvent)
);