39 lines
1.4 KiB
Java
39 lines
1.4 KiB
Java
|
package com.airbnb.lottie.model.animatable;
|
||
|
|
||
|
import com.airbnb.lottie.animation.keyframe.BaseKeyframeAnimation;
|
||
|
import com.airbnb.lottie.animation.keyframe.ScaleKeyframeAnimation;
|
||
|
import com.airbnb.lottie.value.Keyframe;
|
||
|
import com.airbnb.lottie.value.ScaleXY;
|
||
|
import java.util.List;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
public class AnimatableScaleValue extends BaseAnimatableValue<ScaleXY, ScaleXY> {
|
||
|
@Override // com.airbnb.lottie.model.animatable.BaseAnimatableValue, com.airbnb.lottie.model.animatable.AnimatableValue
|
||
|
public /* bridge */ /* synthetic */ List getKeyframes() {
|
||
|
return super.getKeyframes();
|
||
|
}
|
||
|
|
||
|
@Override // com.airbnb.lottie.model.animatable.BaseAnimatableValue, com.airbnb.lottie.model.animatable.AnimatableValue
|
||
|
public /* bridge */ /* synthetic */ boolean isStatic() {
|
||
|
return super.isStatic();
|
||
|
}
|
||
|
|
||
|
@Override // com.airbnb.lottie.model.animatable.BaseAnimatableValue
|
||
|
public /* bridge */ /* synthetic */ String toString() {
|
||
|
return super.toString();
|
||
|
}
|
||
|
|
||
|
public AnimatableScaleValue(ScaleXY scaleXY) {
|
||
|
super(scaleXY);
|
||
|
}
|
||
|
|
||
|
public AnimatableScaleValue(List<Keyframe<ScaleXY>> list) {
|
||
|
super((List) list);
|
||
|
}
|
||
|
|
||
|
@Override // com.airbnb.lottie.model.animatable.AnimatableValue
|
||
|
public BaseKeyframeAnimation<ScaleXY, ScaleXY> createAnimation() {
|
||
|
return new ScaleKeyframeAnimation(this.keyframes);
|
||
|
}
|
||
|
}
|