blob: 4d15a079788f3d5a3dd7f34d0b49ed9c3bff2acd [file] [log] [blame]
package com.airbnb.lottie.parser;
import com.airbnb.lottie.model.animatable.AnimatableColorValue;
import com.airbnb.lottie.model.animatable.AnimatableFloatValue;
public class DropShadowEffect {
private final AnimatableColorValue color;
private final AnimatableFloatValue opacity;
private final AnimatableFloatValue direction;
private final AnimatableFloatValue distance;
private final AnimatableFloatValue radius;
DropShadowEffect(AnimatableColorValue color, AnimatableFloatValue opacity, AnimatableFloatValue direction,
AnimatableFloatValue distance, AnimatableFloatValue radius) {
this.color = color;
this.opacity = opacity;
this.direction = direction;
this.distance = distance;
this.radius = radius;
}
public AnimatableColorValue getColor() {
return color;
}
public AnimatableFloatValue getOpacity() {
return opacity;
}
public AnimatableFloatValue getDirection() {
return direction;
}
public AnimatableFloatValue getDistance() {
return distance;
}
public AnimatableFloatValue getRadius() {
return radius;
}
}