UNPKG

@minecraft/creator-tools

Version:

Minecraft Creator Tools command line and libraries.

30 lines (29 loc) 705 B
export interface IClientAttachableWrapper { format_version: string; "minecraft:attachable": IClientAttachable; } export interface IClientAttachable { description: IClientAttachableDescription; } export interface IClientAttachableDescription { identifier: string; materials: { [identifier: string]: string; }; textures: { [identifier: string]: string | undefined; }; geometry: { [identifier: string]: string; }; particle_effects: { [identifier: string]: string; }; animations: { [identifier: string]: string; }; scripts: { [identifier: string]: string[]; }; render_controllers: string[]; }