An issue that I have been annoyed about is having to loop through parent objects of a GUIObject to see if it is visible on screen. It would be very useful to have a simple read-only variable called GUIObject.IsVisible
to be able to check if the object is visible at all regardless of what GUIObject.Visible
is; similar to how Sound.IsPlaying
and Sound.Playing
exists but for including the visibility of ancestors of the object.
I often use Unity for VRChat Worlds, and I use GameObject.activeInHierarchy
to check if the object is visible and active no matter where it is in the scene. Having a system like this for just GUIObject
instances would improve a lot of my scripts that require a loop to check if it is visible for pausing certain script functions to save resources without fully disabling the entire script