Aframe Entity is seen
问题 I wanted to know how to have a Aframe Component for any entity that define if the entity is seen by the camera, like a bool attribute. "isSeen"= true || false I tried with trigonometry (knowing the rotation of the camera, and the Entities' positions), but I failed. 回答1: How about frustums: checking out if a point(x, y ,z) is within the camera's field of view . The code is quite simple. To use it within a-frame, You could create a component, which will check if the point is seen on each render