I have a container with a lot of Control in it that displays information on player profiles. This containers will regularly show and hide (Depending on the number of players facing the camera).
Question 1
So I wonder if for performance reasons it was better to :
contener.dispose () then recreate if necessary
or
contener.isVisible = false to hide it and contener.isVisible = true to display it.
I wonder if there is a lot of player info on the screen (not visible, but present on the scene) How much does it cost ?
with dispose (), does it cost more to recreate each time?
What is your opinion?
Question 2
And do you have any idea how to display a GUI container when it sees an object and hide it when the camera does not see an object ?
I will try to answer since I have some experience with the BJS GUI.
Question 1
I have taken a different approach which was quite performant for me. I dettached the control and reattached when needed while also changing visibility. I didn’t want to deal with the references afterwards.
Question2
I have used the “camera.isInFrustum(mesh)”. When true I have dettached the GUI container, otherwise I have attached it. Hope this helps you as well.