UNPKG

mdx-m3-viewer

Version:

A browser WebGL model viewer. Mainly focused on models of the games Warcraft 3 and Starcraft 2.

15 lines (14 loc) 287 B
/** * An M3 attachment. */ export default class M3Attachment { /** * @param {Attachment} attachment */ constructor(attachment) { /** @member {string} */ this.name = attachment.name.getAll().join(''); /** @member {number} */ this.bone = attachment.bone; } }