LOTShapeTrimPath.h 543 B

123456789101112131415161718192021
  1. //
  2. // LOTShapeTrimPath.h
  3. // LottieAnimator
  4. //
  5. // Created by brandon_withrow on 7/26/16.
  6. // Copyright © 2016 Brandon Withrow. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "LOTKeyframe.h"
  10. @interface LOTShapeTrimPath : NSObject
  11. - (instancetype)initWithJSON:(NSDictionary *)jsonDictionary;
  12. @property (nonatomic, readonly) NSString *keyname;
  13. @property (nonatomic, readonly) LOTKeyframeGroup *start;
  14. @property (nonatomic, readonly) LOTKeyframeGroup *end;
  15. @property (nonatomic, readonly) LOTKeyframeGroup *offset;
  16. @end