RedMindZ
RedMindZ
> I don't think that is "almost certainly" true You're right, of course its gonna depend on the situation, the system, and the state, and may or may not be...
The order of system execution can be randomized every single frame. The important part is that using `ResMut` allows systems to know what the order is every frame. You can...
I apologize if my `Score` example wasn't clear. There, the systems synchronize/observe the order of execution through the `ResMut` while sending commands for the `Score` resource, which they don't even...
The connection to batching is as follows: If we have 3 systems that are synchronized using `ResMut`, then batching could make some commands from the last system execute before some...