UNPKG

mdx-m3-viewer

Version:

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

12 lines (11 loc) 324 B
import MdxModel from './model'; import MdxModelInstance from './modelinstance'; /** * A group of emitters that are going to be rendered together. */ export default class EmitterGroup { model: MdxModel; objects: number[]; constructor(model: MdxModel); render(instance: MdxModelInstance): void; }