I have a system that I want to run before the physics system group which ofc is inside the simulation system group (well tecnically the predictedSimulationSystemGroup due to netcode). What are my options considering that orderfirst is already used (and that system which is first is the only system that runs before the physicssystemgroup).
#Ordering systems before embedded system groups?
1 messages · Page 1 of 1 (latest)
You can order first on your own system
And then update before / after other systems that have order first
So updatebefore takes precedence over orderfirst?
you can think of OrderFirst/OrderLast as phases
within a system group:
- phase 1: all OrderFirst systems
- phase 2: all systems without OrderFirst/OrderLast
- phase 3: all OrderLast systems
and then UpdateBefore/UpdateAfter apply only within the same phase of the same system group
Ahhhh ok thanks
I'm reopening this because this anecdote doesn't apply to system groups apparently
Seems like I had to put orderfirst on as well.