UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

27 lines 640 B
export class ParticleAttribute { /** * * @param {string} name * @param {ParticleAttributeType} attributeType * @param {ParticleDataType} dataType * @deprecated use {@link AttributeSpec} instead * @constructor */ constructor(name: string, attributeType: ParticleAttributeType, dataType: ParticleDataType); /** * * @type {string} */ name: string; /** * * @type {ParticleAttributeType} */ type: ParticleAttributeType; /** * * @type {ParticleDataType} */ dataType: ParticleDataType; } //# sourceMappingURL=ParticleAttribute.d.ts.map