It's real time. So, 50 times per second means every 2ms. However, if your script code takes 15 hours to execute per frame, it's impossible to do a fixed update every 2ms. The assumption is that `Update()` happens faster than `FixedUpdate()`.
↧