2019-09-26 01:59:16 +00:00
|
|
|
import { IFrame } from './IFrame';
|
2019-12-12 21:17:32 +00:00
|
|
|
import { IPinDefinition } from './IPinDefinition';
|
2019-09-26 01:59:16 +00:00
|
|
|
|
|
|
|
export interface IAnimationData {
|
|
|
|
frameRate: number;
|
2019-10-04 01:02:08 +00:00
|
|
|
originX: number | null;
|
|
|
|
originY: number | null;
|
2019-09-26 01:59:16 +00:00
|
|
|
loop: boolean;
|
|
|
|
frames: IFrame[];
|
2019-12-12 21:17:32 +00:00
|
|
|
pinDefinitions: IPinDefinition[];
|
2019-09-26 01:59:16 +00:00
|
|
|
}
|