UNPKG

@minecraft/creator-tools

Version:

Minecraft Creator Tools command line and libraries.

24 lines (23 loc) 543 B
export interface IBlocksCatalogResource { [identifier: string]: IBlockResource; } export interface IBlockResource { sound?: string; isotropic?: IBlocksIsotropic | boolean; ambient_occlusion_exponent?: number; carried_textures?: string; textures?: IBlockTextures | string; } export interface IBlocksIsotropic { up?: boolean; down?: boolean; } export interface IBlockTextures { north?: string; south?: string; east?: string; west?: string; side?: string; up?: string; down?: string; }