@plurid/plurid-data
Version:
Plurid Constants, Interfaces, Enumerations
19 lines (18 loc) • 498 B
TypeScript
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;
}