// // FUGroupAnimation.h // FURenderKit // // Created by liuyang on 2021/4/22. // #import "FUAnimation.h" NS_ASSUME_NONNULL_BEGIN @interface FUGroupAnimation : FUAnimation @property (nonatomic, copy, readonly) NSArray *components; @property (nonatomic, copy, readonly) NSArray *componentAnimations; - (instancetype)initWithPath:(NSString *)path name:(nullable NSString *)name components:(nullable NSArray *)components componentAnimations:(nullable NSArray *)componentAnimations; + (instancetype)groupAnimationWithPath:(NSString *)path name:(nullable NSString *)name components:(nullable NSArray *)components componentAnimations:(nullable NSArray *)componentAnimations; @end NS_ASSUME_NONNULL_END