LOTShapeFill.h 634 B

1234567891011121314151617181920212223242526
  1. //
  2. // LOTShapeFill.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. NS_ASSUME_NONNULL_BEGIN
  11. @interface LOTShapeFill : NSObject
  12. - (instancetype)initWithJSON:(NSDictionary *)jsonDictionary;
  13. @property (nonatomic, readonly) NSString *keyname;
  14. @property (nonatomic, readonly) BOOL fillEnabled;
  15. @property (nonatomic, readonly) LOTKeyframeGroup *color;
  16. @property (nonatomic, readonly) LOTKeyframeGroup *opacity;
  17. @property (nonatomic, readonly) BOOL evenOddFillRule;
  18. @end
  19. NS_ASSUME_NONNULL_END