What is the best way to determine whether a 3D node has left the screen?

I am new to the 3D features of the creator engine and am looking for the most cost effective way(especially in performance) of determining whether a 3D node has left the screen.

You can get Camera’s frustum first, and use your Model’s worldBounds to check intersection with aabbFrustum function

1 Like

Thanks. Let try that