mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 11:30:04 +00:00
30 lines
836 B
Objective-C
30 lines
836 B
Objective-C
//
|
|
// LOTScene.h
|
|
// LottieAnimator
|
|
//
|
|
// Created by Brandon Withrow on 12/14/15.
|
|
// Copyright © 2015 Brandon Withrow. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <CoreGraphics/CoreGraphics.h>
|
|
|
|
@class LOTLayerGroup;
|
|
@class LOTLayer;
|
|
@class LOTAssetGroup;
|
|
|
|
@interface LOTComposition : NSObject
|
|
|
|
- (instancetype)initWithJSON:(NSDictionary *)jsonDictionary;
|
|
|
|
@property (nonatomic, readonly) CGRect compBounds;
|
|
@property (nonatomic, readonly) NSNumber *startFrame;
|
|
@property (nonatomic, readonly) NSNumber *endFrame;
|
|
@property (nonatomic, readonly) NSNumber *framerate;
|
|
@property (nonatomic, readonly) NSTimeInterval timeDuration;
|
|
@property (nonatomic, readonly) LOTLayerGroup *layerGroup;
|
|
@property (nonatomic, readonly) LOTAssetGroup *assetGroup;
|
|
@property (nonatomic, readwrite) NSString *rootDirectory;
|
|
|
|
@end
|