UNPKG

@minecraft/creator-tools

Version:

Minecraft Creator Tools command line and libraries.

16 lines (15 loc) 434 B
export interface IParticleEffectWrapper { format_version: string; particle_effect: IParticleEffect; } export interface IParticleEffect { description: IParticleEffectDescription; } export interface IParticleEffectDescription { identifier: string; basic_render_parameters: IParticleEffectBasicRenderParameters; } export interface IParticleEffectBasicRenderParameters { material?: string; texture?: string; }