UNPKG

@babylonjs/materials

Version:

Babylon.js Materials Library =====================

14 lines 541 B
/* eslint-disable import/no-internal-modules */ import * as MatLib from "../gradient/index.js"; /** * This is the entry point for the UMD module. * The entry point for a future ESM package should be index.ts */ const globalObject = typeof global !== "undefined" ? global : typeof window !== "undefined" ? window : undefined; if (typeof globalObject !== "undefined") { for (const key in MatLib) { globalObject.BABYLON[key] = MatLib[key]; } } export * from "../gradient/index.js"; //# sourceMappingURL=legacy-gradient.js.map