blob: 94cda06cff30b88f2077fd9bd561efb86c1fe72a [file] [log] [blame]
package com.airbnb.lottie.animation.keyframe;
import com.airbnb.lottie.animation.Keyframe;
import com.airbnb.lottie.utils.MiscUtils;
import java.util.List;
public class FloatKeyframeAnimation extends KeyframeAnimation<Float> {
public FloatKeyframeAnimation(List<Keyframe<Float>> keyframes) {
super(keyframes);
}
@Override Float getValue(Keyframe<Float> keyframe, float keyframeProgress) {
if (keyframe.startValue == null || keyframe.endValue == null) {
throw new IllegalStateException("Missing values for keyframe.");
}
if (valueCallback != null) {
//noinspection ConstantConditions
return valueCallback.getValueInternal(keyframe.startFrame, keyframe.endFrame,
keyframe.startValue, keyframe.endValue,
keyframeProgress, getLinearCurrentKeyframeProgress(), getProgress());
}
return MiscUtils.lerp(keyframe.startValue, keyframe.endValue, keyframeProgress);
}
}