mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-02 10:50:11 +00:00
32 lines
939 B
Objective-C
32 lines
939 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
|
|
withAssetBundle:(NSBundle *)bundle;
|
|
|
|
@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;
|
|
@property (nonatomic, readonly) NSBundle *assetBundle;
|
|
|
|
@end
|