UnityEditor.ParticleSystemUI.UpdateParticleSystemInfoString C# (CSharp) Method

UpdateParticleSystemInfoString() private method

private UpdateParticleSystemInfoString ( ) : void
return void
        private void UpdateParticleSystemInfoString()
        {
            string text = "";
            foreach (ModuleUI eui in this.m_Modules)
            {
                if (((eui != null) && eui.visibleUI) && eui.enabled)
                {
                    eui.UpdateCullingSupportedString(ref text);
                }
            }
            if (text != "")
            {
                this.m_SupportsCullingText = "Automatic culling is disabled because: " + text;
            }
            else
            {
                this.m_SupportsCullingText = null;
            }
        }