Commands Send Event

An extension trait for Commands that allows you to send Bevy Events generically.

Supports Bevy 0.6

Limitations

Usage

Add to your Cargo.toml [dependencies] section commands_send_event = "0.1"

then the send_event method is available on Commands:

```rust use commandssendevent::CommandsSendEvent;

[derive(Component)]

struct MyEventA(String);

[derive(Component)]

struct MyEventB(i32);

fn sender( mut commands: Commands ) { commands.sendevent(MyEventA("Hello, World")); commands.sendevent(MyEventB(42)); } ``` The /examples folder has a complete working example.