@loaders.gl/obj
Version:
Framework-independent loader for the OBJ format
15 lines • 338 B
JavaScript
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
/**
* The MTL material format
* A Wavefront .mtl file specifying materials
*/
export const MTLFormat = {
name: 'MTL',
id: 'mtl',
module: 'mtl',
extensions: ['mtl'],
mimeTypes: ['text/plain']
};
//# sourceMappingURL=mtl-format.js.map