UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

20 lines 572 B
export class ParticleRenderCommand { /** * * @param {ParticleRenderSpecification} spec * @param {EmitterAttributeData} data * @returns {ParticleRenderCommand} */ static from(spec: ParticleRenderSpecification, data: EmitterAttributeData): ParticleRenderCommand; /** * How to render * @type {ParticleRenderSpecification} */ spec: ParticleRenderSpecification; /** * What to render * @type {EmitterAttributeData} */ data: EmitterAttributeData; } //# sourceMappingURL=ParticleRenderCommand.d.ts.map