
FDroneClientBubbleHandler 쪽에서 Remove 이벤트 함수를 구현하지 않았음!해당 함수 호출을 위하여 구현 시도 중
void FDroneClientBubbleHandler::Tick(float DeltaTime)
{
using Super = TClientBubbleHandlerBase<FDroneFastArrayItem>;
UE_LOG(LogProjectD, VeryVerbose, TEXT("[DroneBubble] Tick dt=%.3f"), DeltaTime);
Super::Tick(DeltaTime);
}
void FDroneClientBubbleHandler::UpdateAgentsToRemove()
{
using Super = TClientBubbleHandlerBase<FDroneFastArrayItem>;
UE_LOG(LogProjectD, Warning, TEXT("[DroneBubble] UpdateAgentsToRemove()"));
Super::UpdateAgentsToRemove();
}
이 쪽 문제가 아닌가…??