UnityEditor.ParticleEffectUI.GetParticleSystemUIList C# (CSharp) Method

GetParticleSystemUIList() public method

public GetParticleSystemUIList ( List shurikens ) : List
shurikens List
return List
        public List<ParticleSystemUI> GetParticleSystemUIList(List<ParticleSystem> shurikens)
        {
            List<ParticleSystemUI> list = new List<ParticleSystemUI>();
            foreach (ParticleSystem system in shurikens)
            {
                ParticleSystemUI particleSystemUIForParticleSystem = this.GetParticleSystemUIForParticleSystem(system);
                if (particleSystemUIForParticleSystem != null)
                {
                    list.Add(particleSystemUIForParticleSystem);
                }
            }
            return list;
        }