Beispiel #1
0
    public static string GetParticleCountStr(ParticleEffectScript particleEffectGo)
    {
        int max = 50;

        return(string.Format("粒子数量:{0}   最高:{1}   建议:<{2}", FormatColorMax(particleEffectGo.GetParticleCount(), max), FormatColorMax(particleEffectGo.GetMaxParticleCount(), max), max));
    }
 public static string GetParticleCountStr(ParticleEffectScript particleEffectGo)
 {
     return(string.Format("粒子数量:{0}   最高:{1}   建议:<50", particleEffectGo.GetParticleCount(), particleEffectGo.GetMaxParticleCount()));
 }