DOTS Physics time scale

I needed a time scale for dots physics after a bit of digging found that in
StepPhysicsWorld.cs → OnUpdate()

multiplying the delta time with a scalar value is enough and seems to be stable so it would look something like this

Simulation.ScheduleStepJobs(new SimulationStepInput() {
  ...
  TimeStep = Time.DeltaTime * PhysicsSettings.TimeScale,
...
} , ...

hopefully this will be added in the future, in my case storing values in a static class is good enough since those are global values for per simulation ( PhysicsSettings )

Ideally, it would also be nice if it was possible to change time scale on a per entity basis, rather than having one global time scale for the entire simulation.

Edit: Why is this not in the physics subforum?