#What is the difference between sending events with `World` and `EventWriter`?
3 messages · Page 1 of 1 (latest)
is it because EventWriter can only be accessed by internal functions to bevy like the Update functions? And the World can be used anywhere outside of bevy?
You can have multiple systems with EventWriter running at the same time, while systems with World will run alone