| 364 | } |
| 365 | |
| 366 | void Engine::OnLateUpdate() |
| 367 | { |
| 368 | PROFILE_CPU_NAMED("Late Update"); |
| 369 | |
| 370 | // Call event |
| 371 | LateUpdate(); |
| 372 | |
| 373 | // Update services |
| 374 | EngineService::OnLateUpdate(); |
| 375 | } |
| 376 | |
| 377 | void Engine::OnDraw() |
| 378 | { |
no test coverage detected