Can I check some part of an AActor is in screen by UPrimitiveComponent::LastRenderTimeOnScreen?

Can I check some part of an AActor is in screen by UPrimitiveComponent::LastRenderTimeOnScreen?
For example, I want check whether an AActor’s head is in screen by checking
some UPrimitiveComponent’s LastRenderTimeOnScreen value.
UPrimitiveComponent is attached to head position.
If it is suitable, what class would be the best choice?
It doesn’t need to be drawed, but LastRenderTimeOnScreen value should be updated properly.

Sincere Ryan.


UPrimitiveComponent 의 LastRenderTimeOnScreen 를 이용해 특정 부위가 화면에 보이는지를 검사하고 싶습니다.
원하는 건 다음과 같습니다.
다양한 크기의 객체가 화면에 보일 때
특정 부위(예를 들어 머리) 가 화면에 보이는지, 다른 사물에 가려져 있는지를 검사하기 위해
머리 위치에 적당한 UPrimitiveComponent 를 Attach 한 다음
LastRenderTimeOnScreen 을 확인해서 화면에 그려지고 있는지를 확인하고 싶습니다.
이런 방향이 괜찮을지, 그렇다면 어떤 UPrimitiveComponent 클래스를 쓰는게 좋을지(실제로 그려질 필요없음, 가벼우면서 LastRenderTimeOnScreen 값은 제대로 update 되어야 함) 알고 싶습니다.
감사합니다.