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

19 lines
750 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
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: classes.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));
}
}