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) 263 B
import MdxModel from './model'; import Layer from './layer'; /** * An MDX material. */ export default class Material { model: MdxModel; shader: string; layers: Layer[]; constructor(model: MdxModel, shader: string, layers: Layer[]); }