#how to pass data from one system to another

1 messages · Page 1 of 1 (latest)

stoic basalt
#

So i have PlayerViewSystem that checks what chunks player is seeing and want to pass that data to next system that will render chunks that are only visible to player,.

sharp brook
#

ECS systems communicate through the entity components. So it' apparent that system A should modify some component on some entities. Then system B should read those changes by querying the components. Just a normal procedure in ECS.