Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | 7886x | import defined from "../../Core/defined.js";
/**
* Checks whether the glTF uses the given extension.
*
* @param {object} gltf A javascript object containing a glTF asset.
* @param {string} extension The name of the extension.
* @returns {boolean} Whether the glTF uses the given extension.
*
* @private
*/
function usesExtension(gltf, extension) {
return (
defined(gltf.extensionsUsed) && gltf.extensionsUsed.indexOf(extension) >= 0
);
}
export default usesExtension;
|