mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-25 16:42:30 -06:00
18 lines
751 B
Java
18 lines
751 B
Java
package com.airbnb.lottie.parser;
|
|
|
|
import com.airbnb.lottie.LottieComposition;
|
|
import com.airbnb.lottie.animation.keyframe.PathKeyframe;
|
|
import com.airbnb.lottie.parser.moshi.JsonReader;
|
|
import com.airbnb.lottie.utils.Utils;
|
|
import java.io.IOException;
|
|
|
|
/* loaded from: classes2.dex */
|
|
class PathKeyframeParser {
|
|
private PathKeyframeParser() {
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
public static PathKeyframe parse(JsonReader jsonReader, LottieComposition lottieComposition) throws IOException {
|
|
return new PathKeyframe(lottieComposition, KeyframeParser.parse(jsonReader, lottieComposition, Utils.dpScale(), PathParser.INSTANCE, jsonReader.peek() == JsonReader.Token.BEGIN_OBJECT, false));
|
|
}
|
|
}
|