MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / OnLateFixedUpdate

Method OnLateFixedUpdate

Source/Engine/Engine/Engine.cpp:328–340  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

326}
327
328void 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
342void Engine::OnUpdate()
343{

Callers 1

TickScriptsMethod · 0.80

Calls 1

OnLateFixedUpdateFunction · 0.85

Tested by

no test coverage detected