@minecraft/creator-tools
Version:
Minecraft Creator Tools command line and libraries.
22 lines (21 loc) • 580 B
TypeScript
export default interface IAnimationBehaviorWrapper {
format_version: string;
__comment__?: string;
animations: IAnimationBehaviorSet;
}
export interface IAnimationBehaviorSet {
[identifier: string]: IAnimationBehavior;
}
export interface IAnimationBehavior {
animation_length: number;
loop?: boolean;
timeline?: IAnimationBehaviorTimeline;
}
export interface IAnimationBehaviorTimeline {
[timeStamp: string]: string[];
}
export interface IAnimationBehaviorTimelineWrapper {
animationId: string;
timestamp: string;
timeline: string[];
}