mdx-m3-viewer
Version:
A browser WebGL model viewer. Mainly focused on models of the games Warcraft 3 and Starcraft 2.
16 lines (15 loc) • 374 B
JavaScript
/**
* An M3 sequence.
*/
export default class M3Sequence {
/**
* @param {M3ParserSequence} sequence
*/
constructor(sequence) {
this.name = sequence.name.getAll().join('');
this.interval = sequence.interval;
this.movementSpeed = sequence.movementSpeed;
this.frequency = sequence.frequency;
this.boundingSphere = sequence.boundingSphere;
}
}