UNPKG

mdx-m3-viewer

Version:

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

17 lines 515 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * An M3 sequence. */ class M3Sequence { constructor(sequence) { this.name = sequence.name.get(); this.interval = sequence.interval; this.movementSpeed = sequence.movementSpeed; this.frequency = sequence.frequency; this.boundingSphere = sequence.boundingSphere; this.flags = sequence.flags; } } exports.default = M3Sequence; //# sourceMappingURL=sequence.js.map