Unity TimeScale和 fixedDeltaTime的关系
https://docs.unity3d.com/ScriptReference/Time-timeScale.html
1.timescale不影响 fixedDelataTIme的值
Except for Time.fixedDeltaTime by timeScale.
This can be used for slow motion effects or to speed up your application. When timeScale is 1.0, time passes as fast as real time. When timeScale is 0.5 time passes 2x slower than realtime.
When timeScale is set to zero your application acts as if paused if all your functions are frame rate independent. Negative values are ignored.
Note that changing the timeScale only takes effect on the following frames. How often MonoBehaviour.FixedUpdate is executed per frame depends on the timeScale. Therefore, to keep the number of FixedUpdate callbacks per frame constant, you must also multiply Time.fixedDeltaTime by timeScale. Whether this adjustment is desirable is game-specific.
FixedUpdate functions and suspended Coroutines with WaitForSeconds are not called when timeScale is set to zero.