In FreeCamera.cs (default template camera controller)
Time.DeltaTime is used inside OnFixedUpdate(), and it seems FlaxEngine does not have dedicated fixedDeltaTime inside Time class.
Is interval time of OnUpdate() and OnFixedUpdate() same, or that use of DeltaTime inside OnFixedUpdate was just tolerated?
AFAIK FixedUpdate is for physics update and not dependant to Update()'s render frame frequency.