rx_bevy_observable_message 0.1.0

rx_bevy message observable
Documentation

observable_message

crates.io ci codecov license

The MessageObservable lets you observe global messages written by a MessageWriter!

  • Messages written in or before the observables schedule will be observed in the same frame. If the message was written in a later schedule, it will be observed in the next frame, which could lead to 1 frame flickers if something also reacts to the same message in the same frame it was written!

See Also

Example

cargo run -p rx_bevy --example message_observable_example