diff --git a/lottie-ios/Classes/LALayer.m b/lottie-ios/Classes/LALayer.m index 07e4f6284f..048fd7f1c3 100644 --- a/lottie-ios/Classes/LALayer.m +++ b/lottie-ios/Classes/LALayer.m @@ -59,6 +59,9 @@ } NSDictionary *rotation = ks[@"r"]; + if (rotation == nil) { + rotation = ks[@"rz"]; + } if (rotation) { _rotation = [[LAAnimatableNumberValue alloc] initWithNumberValues:rotation frameRate:_framerate]; [_rotation remapValueWithBlock:^CGFloat(CGFloat inValue) {