gltf-pipeline
Version:
Content pipeline tools for optimizing glTF assets.
18 lines (15 loc) • 535 B
JavaScript
;
const parseGlb = require("./parseGlb");
const processGltf = require("./processGltf");
module.exports = glbToGltf;
/**
* Convert a glb to glTF.
*
* @param {Buffer} glb A buffer containing the glb contents.
* @param {object} [options] The same options object as {@link processGltf}
* @returns {Promise} A promise that resolves to an object containing the glTF and a dictionary containing separate resources.
*/
function glbToGltf(glb, options) {
const gltf = parseGlb(glb);
return processGltf(gltf, options);
}