Swiftgram/lottie-ios/Classes/AnimatableProperties/LOTAnimatableScaleValue.h
2017-07-28 14:46:27 -07:00

21 lines
549 B
Objective-C

//
// LOTAnimatableScaleValue.h
// LottieAnimator
//
// Created by brandon_withrow on 7/11/16.
// Copyright © 2016 Brandon Withrow. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "LOTAnimatableValue.h"
#import "LOTKeyframe.h"
@interface LOTAnimatableScaleValue : NSObject <LOTAnimatableValue>
- (instancetype)initWithScaleValues:(NSDictionary *)scaleValues frameRate:(NSNumber *)frameRate;
@property (nonatomic, readonly) CATransform3D initialScale;
@property (nonatomic, readonly) LOTKeyframeGroup *keyframeGroup;
@end