@minecraft/creator-tools
Version:
Minecraft Creator Tools command line and libraries.
30 lines (29 loc) • 705 B
TypeScript
export interface IClientAttachableWrapper {
format_version: string;
"minecraft:attachable": IClientAttachable;
}
export interface IClientAttachable {
description: IClientAttachableDescription;
}
export interface IClientAttachableDescription {
identifier: string;
materials: {
[]: string;
};
textures: {
[]: string | undefined;
};
geometry: {
[]: string;
};
particle_effects: {
[]: string;
};
animations: {
[]: string;
};
scripts: {
[]: string[];
};
render_controllers: string[];
}