| 326 | } |
| 327 | |
| 328 | void Engine::OnLateFixedUpdate() |
| 329 | { |
| 330 | PROFILE_CPU_NAMED("Late Fixed Update"); |
| 331 | |
| 332 | // Collect physics simulation results (does nothing if Simulate hasn't been called in the previous loop step) |
| 333 | Physics::CollectResults(); |
| 334 | |
| 335 | // Call event |
| 336 | LateFixedUpdate(); |
| 337 | |
| 338 | // Update services |
| 339 | EngineService::OnLateFixedUpdate(); |
| 340 | } |
| 341 | |
| 342 | void Engine::OnUpdate() |
| 343 | { |
no test coverage detected