UnityEditor.LightProbeProxyVolumeEditor.GetGlobalBounds C# (CSharp) Method

GetGlobalBounds() private method

private GetGlobalBounds ( ) : Bounds
return UnityEngine.Bounds
        private Bounds GetGlobalBounds()
        {
            if (base.target is LightProbeProxyVolume)
            {
                LightProbeProxyVolume target = (LightProbeProxyVolume) base.target;
                return target.boundsGlobal;
            }
            return new Bounds();
        }