#Events with Systems
1 messages · Page 1 of 1 (latest)
1 messages · Page 1 of 1 (latest)
Can (and should) I use events to make systems communicate with each other?
No, you shouldn't. Systems should communicate by transforming data/components.
Events strictly should not be used for that with systems.
BUUUUUUT
You can use a combination of state. RequireForUpdate & singleton components to get the same result