Get bounds of UChildActorComponent

Hi, how can I get the bounds of UChildActorComponent?
I Tried with child->Bounds but always returns 0 0 0 .
Thank you.

You want the bounds of the child actor, correct?

In that case, get the child actor using UChildActorComponent::GetChildActor, and then use AActor::GetActorBounds on that.

Hope this helps!

Thank you very much, I’ll try