UnityEditor.LightEditor.UpdateShowOptions C# (CSharp) Méthode

UpdateShowOptions() private méthode

private UpdateShowOptions ( bool initialize ) : void
initialize bool
Résultat void
        private void UpdateShowOptions(bool initialize)
        {
            this.SetOptions(this.m_ShowSpotOptions, initialize, this.spotOptionsValue);
            this.SetOptions(this.m_ShowPointOptions, initialize, this.pointOptionsValue);
            this.SetOptions(this.m_ShowDirOptions, initialize, this.dirOptionsValue);
            this.SetOptions(this.m_ShowAreaOptions, initialize, this.areaOptionsValue);
            this.SetOptions(this.m_ShowShadowOptions, initialize, this.shadowOptionsValue);
            this.SetOptions(this.m_ShowIndirectWarning, initialize, this.bounceWarningValue);
            this.SetOptions(this.m_ShowBakingWarning, initialize, this.bakingWarningValue);
            this.SetOptions(this.m_ShowCookieWarning, initialize, this.cookieWarningValue);
            this.SetOptions(this.m_ShowRuntimeOptions, initialize, this.runtimeOptionsValue);
            this.SetOptions(this.m_BakedShadowAngleOptions, initialize, this.bakedShadowAngle);
            this.SetOptions(this.m_BakedShadowRadiusOptions, initialize, this.bakedShadowRadius);
        }