public static PropertyValuesHolder Glide(BaseEasingMethod easing, float duration, PropertyValuesHolder propertyValuesHolder) { easing.Duration = duration; propertyValuesHolder.SetEvaluator(easing); return(propertyValuesHolder); }
public static ValueAnimator Glide(BaseEasingMethod easing, float duration, ValueAnimator animator) { easing.Duration = duration; animator.SetEvaluator(easing); return(animator); }