UNPKG

mdx-m3-viewer

Version:

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

15 lines (12 loc) 317 B
import TgaImage from '../../../parsers/tga/image'; import isTga from '../../../parsers/tga/isformat'; import Texture from './texture'; export default { isValidSource(object: any) { if (object instanceof TgaImage) { return true; } return isTga(object); }, resource: Texture, };