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) 458 B
import MdxModel from './model'; import MdxModelInstance from './modelinstance'; import { SkinningType } from './batch'; /** * A group of batches that are going to be rendered together. */ export default class BatchGroup { model: MdxModel; skinningType: SkinningType; isHd: boolean; objects: number[]; constructor(model: MdxModel, skinningType: SkinningType, isHd: boolean); render(instance: MdxModelInstance): void; }