| 146 | } |
| 147 | |
| 148 | void OvCore::SceneSystem::Scene::LateUpdate(float p_deltaTime) |
| 149 | { |
| 150 | ZoneScoped; |
| 151 | auto actors = m_actors; |
| 152 | std::for_each(actors.begin(), actors.end(), std::bind(std::mem_fn(&ECS::Actor::OnLateUpdate), std::placeholders::_1, p_deltaTime)); |
| 153 | } |
| 154 | |
| 155 | OvCore::ECS::Actor& OvCore::SceneSystem::Scene::CreateActor() |
| 156 | { |
no test coverage detected