------------------------------------- ModelInit::OnComponentRemoved Remove respectively
| 36 | // Remove respectively |
| 37 | // |
| 38 | void ModelInit::OnComponentRemoved(EcsController& controller, ModelComponent& component, T_EntityId const entity) |
| 39 | { |
| 40 | UNUSED(controller); |
| 41 | UNUSED(entity); |
| 42 | |
| 43 | UnifiedScene::Instance().GetRenderScene().RemoveInstance(component.m_InstanceId); |
| 44 | } |
| 45 | |
| 46 | |
| 47 | } // namespace fw |
nothing calls this directly
no test coverage detected