UNPKG

mdx-m3-viewer

Version:

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

11 lines (10 loc) 228 B
import Texture from '../../texture'; /** * An M3 texture. */ export default class M3Texture { texture: Texture | null; wrapS: number; wrapT: number; constructor(repeatS: boolean, repeatT: boolean); }