mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
16 lines
712 B
Java
16 lines
712 B
Java
package com.airbnb.lottie.model.animatable;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class AnimatableTextProperties {
|
|
public final AnimatableColorValue color;
|
|
public final AnimatableColorValue stroke;
|
|
public final AnimatableFloatValue strokeWidth;
|
|
public final AnimatableFloatValue tracking;
|
|
|
|
public AnimatableTextProperties(AnimatableColorValue animatableColorValue, AnimatableColorValue animatableColorValue2, AnimatableFloatValue animatableFloatValue, AnimatableFloatValue animatableFloatValue2) {
|
|
this.color = animatableColorValue;
|
|
this.stroke = animatableColorValue2;
|
|
this.strokeWidth = animatableFloatValue;
|
|
this.tracking = animatableFloatValue2;
|
|
}
|
|
}
|