Removed frames from lottie animation

This commit is contained in:
Arnfried Griesert
2022-10-24 11:28:47 +02:00
parent 54c76f6d27
commit 7c9a293ad9
@@ -32,7 +32,9 @@ class BUMLaunchLoadingViewController: UIViewController {
let animationView = LottieAnimationView(name: "bum_lottie_animation")
animationView.loopMode = .playOnce
animationView.contentMode = .scaleAspectFit
animationView.play()
animationView.play(toFrame: 35) {_ in
animationView.play(fromFrame: 55, toFrame: 132)
}
view.addSubview(animationView)