UNPKG

@plurid/plurid-data

Version:
19 lines (18 loc) 498 B
export interface PluridAnimation { duration: number; /** * list of Plurid Plane IDs */ affect: string[]; effect: PluridAnimationEffect; } export interface PluridAnimationEffect { from: PluridAnimationLocation; to: PluridAnimationLocation; } export declare type PluridAnimationLocation = 'rendered' | 'origin' | 'current' | PluridAnimationLocationData; export interface PluridAnimationLocationData { x: number; y: number; z: number; }