Added BB calculation to all actors

This commit is contained in:
doterop 2020-11-17 15:53:50 +01:00
parent 42d67c2d28
commit 5474c72876
1 changed files with 3 additions and 1 deletions

View File

@ -113,7 +113,9 @@ FBoundingBox UBoundingBoxCalculator::GetActorBoundingBox(const AActor *Actor, ui
return {};
}
}
// Other, by default BB
TArray<FBoundingBox> BBs = GetBBsOfActor(Actor);
return CombineBBs(BBs);
}
return {};