Attribute "UpdateInGroup(typeof(FixedStepSimulationSystemGroup))" doen't work.

maybe there is a bug with physics update group in netcode. i tried PredictedPhysicsSystemGroup and it work. After that i tried FixedStepSimulationSystemGroup and the system just do nothing except call OnCreate Func.

The FixedStepSimulationSystemGroup update is called as usual on both client and on the server, unless something disable the group or set the RateManager to null (something we don’t do).
I actually verified my self in the PredictionSwitching test (that uses predicted physics).
Are you having this problem on the server or the client?
What queries your system have?
Did you tried to put a breakpoint into the FixedStepSimulationSystemGroup.Update and check that this is actually called?
Also, remember that if you are using PredictedPhysics, and if your system update inside the FixedStepSimulationSystemGroup and your system has a dependency (direct or indirect) to any of the Physics systems (Build, Export, Step etc etc) it will be moved in the PredictedPhysicsSystemGroup.
As such, the system will not run until at least one predicted ghost is present in the world.

i realize that client world have to connect to server. if not the fixstepsiluationsystemgroup willnt be called.

please resolve the issue, since it is non issue :slight_smile:

1 Like