public void Set(object target, string val) { ColorFaderAffector2 affector = target as ColorFaderAffector2; affector.AlphaAdjust2 = StringConverter.ParseFloat(val); }
public string Get(object target) { ColorFaderAffector2 affector = target as ColorFaderAffector2; return(StringConverter.ToString(affector.AlphaAdjust2)); }