UpdateWorldTimeSystem

Discovered UpdateWorldTimeSystem in the doc. The the use case for this system.

Thanks in advance

There is a new Time.Time and Time.Elapsed time built into [Job]ComponentSystems so you can avoid using the old static methods.

For now this just updates them to match Time.time and Time.deltaTime. In the future I’m sure this will be expanded upon.

1 Like

For a second I thought component system with custom fixed time step build in

It standardize time access for all systems. I can reliably modify the time that this system would propagate and expect system from other programmers to use it in their OnUpdate because they followed the standard.

Got it ty