Summary description for ColorFaderAffector.
Inheritance: Axiom.ParticleSystems.ParticleAffector
            public void Set(object target, string val)
            {
                ColorFaderAffector affector = target as ColorFaderAffector;

                affector.AlphaAdjust = StringConverter.ParseFloat(val);
            }
            public string Get(object target)
            {
                ColorFaderAffector affector = target as ColorFaderAffector;

                return(StringConverter.ToString(affector.AlphaAdjust));
            }