mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
42 lines
1.2 KiB
Objective-C
42 lines
1.2 KiB
Objective-C
//
|
|
// LOTShapeTrimPath.m
|
|
// LottieAnimator
|
|
//
|
|
// Created by brandon_withrow on 7/26/16.
|
|
// Copyright © 2016 Brandon Withrow. All rights reserved.
|
|
//
|
|
|
|
#import "LOTShapeTrimPath.h"
|
|
#import "LOTAnimatableNumberValue.h"
|
|
|
|
@implementation LOTShapeTrimPath
|
|
|
|
- (instancetype)initWithJSON:(NSDictionary *)jsonDictionary frameRate:(NSNumber *)frameRate {
|
|
self = [super init];
|
|
if (self) {
|
|
[self _mapFromJSON:jsonDictionary frameRate:frameRate];
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void)_mapFromJSON:(NSDictionary *)jsonDictionary frameRate:(NSNumber *)frameRate {
|
|
NSDictionary *start = jsonDictionary[@"s"];
|
|
if (start) {
|
|
_start = [[LOTAnimatableNumberValue alloc] initWithNumberValues:start frameRate:frameRate];
|
|
[_start remapValuesFromMin:@0 fromMax:@100 toMin:@0 toMax:@1];
|
|
}
|
|
|
|
NSDictionary *end = jsonDictionary[@"e"];
|
|
if (end) {
|
|
_end = [[LOTAnimatableNumberValue alloc] initWithNumberValues:end frameRate:frameRate];
|
|
[_end remapValuesFromMin:@0 fromMax:@100 toMin:@0 toMax:@1];
|
|
}
|
|
|
|
NSDictionary *offset = jsonDictionary[@"o"];
|
|
if (offset) {
|
|
_offset = [[LOTAnimatableNumberValue alloc] initWithNumberValues:offset frameRate:frameRate];
|
|
}
|
|
}
|
|
|
|
@end
|