在FixUpdate中使用Time.DeltaTime,打印出来的值会变成TimeFixedTime,也就是FixUpdate执行的时间间隔,默认为0.02,例如:
void FixUpdate(){
DeBug.Log(Time.DeltaTime);
}
打印出结果: 0.02