| 139 | } |
| 140 | |
| 141 | void OvCore::SceneSystem::Scene::FixedUpdate(float p_deltaTime) |
| 142 | { |
| 143 | ZoneScoped; |
| 144 | auto actors = m_actors; |
| 145 | std::for_each(actors.begin(), actors.end(), std::bind(std::mem_fn(&ECS::Actor::OnFixedUpdate), std::placeholders::_1, p_deltaTime)); |
| 146 | } |
| 147 | |
| 148 | void OvCore::SceneSystem::Scene::LateUpdate(float p_deltaTime) |
| 149 | { |
no test coverage detected