LOTShapePath.h 521 B

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