How do I get an Actor's static mesh?

Or if you just want to get the ONE static mesh that it has, you can take the first by doing: UActorComponent* comp = GetComponentByClass(UStaticMeshComponent::StaticClass()); . You would have to use Casting to change UActorComponent to the specific StaticMesh Component you have.