UnityEditor.LightProbeProxyVolumeEditor.UpdateShowOptions C# (CSharp) Method

UpdateShowOptions() private method

private UpdateShowOptions ( bool initialize ) : void
initialize bool
return void
        private void UpdateShowOptions(bool initialize)
        {
            this.SetOptions(this.m_ShowBoundingBoxOptions, initialize, this.boundingBoxOptionsValue);
            this.SetOptions(this.m_ShowComponentUnusedWarning, initialize, this.componentUnusedWarningValue);
            this.SetOptions(this.m_ShowResolutionXYZOptions, initialize, this.resolutionXYZOptionValue);
            this.SetOptions(this.m_ShowResolutionProbesOption, initialize, this.resolutionProbesOptionValue);
            this.SetOptions(this.m_ShowNoRendererWarning, initialize, this.noRendererWarningValue);
            this.SetOptions(this.m_ShowNoLightProbesWarning, initialize, this.noLightProbesWarningValue);
        }