UNPKG

mdx-m3-viewer

Version:

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

13 lines (12 loc) 324 B
import { WrapMode } from '../../../parsers/mdlx/texture'; import Texture from '../../texture'; /** * An MDX texture. */ export default class MdxTexture { texture: Texture | null; replaceableId: number; wrapS: number; wrapT: number; constructor(replaceableId: number, wrapMode: WrapMode); }