------------------------------------- TransformSystem::OnComponentRemoved Remove respectively
| 34 | // Remove respectively |
| 35 | // |
| 36 | void TransformSystem::OnComponentRemoved(EcsController& controller, TransformComponent& component, T_EntityId const entity) |
| 37 | { |
| 38 | UNUSED(controller); |
| 39 | UNUSED(entity); |
| 40 | |
| 41 | UnifiedScene::Instance().GetRenderScene().RemoveNode(component.GetNodeId()); |
| 42 | } |
| 43 | |
| 44 | //--------------------------------- |
| 45 | // TransformSystem::Compute::c-tor |
nothing calls this directly
no test coverage detected