mirror of
https://github.com/duckietm/Nitro-Cool-UI.git
synced 2025-06-21 14:26:58 +00:00
10 lines
274 B
TypeScript
10 lines
274 B
TypeScript
import { IAssetVisualAnimationSequence } from './IAssetVisualAnimationSequence';
|
|
|
|
export interface IAssetVisualAnimationLayer
|
|
{
|
|
loopCount?: number;
|
|
frameRepeat?: number;
|
|
random?: number;
|
|
frameSequences?: { [index: string]: IAssetVisualAnimationSequence };
|
|
}
|