what-the-bank/sources/com/airbnb/lottie/parser/DropShadowEffect.java

43 lines
1.4 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package com.airbnb.lottie.parser;
import com.airbnb.lottie.model.animatable.AnimatableColorValue;
import com.airbnb.lottie.model.animatable.AnimatableFloatValue;
/* loaded from: classes.dex */
public class DropShadowEffect {
private final AnimatableColorValue color;
private final AnimatableFloatValue direction;
private final AnimatableFloatValue distance;
private final AnimatableFloatValue opacity;
private final AnimatableFloatValue radius;
/* JADX INFO: Access modifiers changed from: package-private */
public DropShadowEffect(AnimatableColorValue animatableColorValue, AnimatableFloatValue animatableFloatValue, AnimatableFloatValue animatableFloatValue2, AnimatableFloatValue animatableFloatValue3, AnimatableFloatValue animatableFloatValue4) {
this.color = animatableColorValue;
this.opacity = animatableFloatValue;
this.direction = animatableFloatValue2;
this.distance = animatableFloatValue3;
this.radius = animatableFloatValue4;
}
public AnimatableFloatValue getRadius() {
return this.radius;
}
public AnimatableFloatValue getOpacity() {
return this.opacity;
}
public AnimatableFloatValue getDistance() {
return this.distance;
}
public AnimatableFloatValue getDirection() {
return this.direction;
}
public AnimatableColorValue getColor() {
return this.color;
}
}