LOTShapeRepeater.h 966 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // LOTShapeRepeater.h
  3. // Lottie
  4. //
  5. // Created by brandon_withrow on 7/28/17.
  6. // Copyright © 2017 Airbnb. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "LOTKeyframe.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface LOTShapeRepeater : NSObject
  12. - (instancetype)initWithJSON:(NSDictionary *)jsonDictionary;
  13. @property (nonatomic, readonly) NSString *keyname;
  14. @property (nonatomic, readonly, nullable) LOTKeyframeGroup *copies;
  15. @property (nonatomic, readonly, nullable) LOTKeyframeGroup *offset;
  16. @property (nonatomic, readonly, nullable) LOTKeyframeGroup *anchorPoint;
  17. @property (nonatomic, readonly, nullable) LOTKeyframeGroup *scale;
  18. @property (nonatomic, readonly, nullable) LOTKeyframeGroup *position;
  19. @property (nonatomic, readonly, nullable) LOTKeyframeGroup *rotation;
  20. @property (nonatomic, readonly, nullable) LOTKeyframeGroup *startOpacity;
  21. @property (nonatomic, readonly, nullable) LOTKeyframeGroup *endOpacity;
  22. @end
  23. NS_ASSUME_NONNULL_END