UNPKG

352 BTypeScriptView Raw
1export interface IAnimation {
2 count: number;
3 /**
4 * Enables/disables the animation
5 */
6 enable: boolean;
7 /**
8 * Speed animation
9 */
10 speed: number;
11 /**
12 * Enables the sync animations for the particles created at the same time
13 * pushed or emitter particles will be out of sync
14 */
15 sync: boolean;
16}