- /* eslint-disable import/no-internal-modules */
- import * as Loaders from "../OBJ/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 Loaders) {
- if (!globalObject.BABYLON[key]) {
- globalObject.BABYLON[key] = Loaders[key];
- }
- }
- }
- export * from "../OBJ/index.js";
- //# sourceMappingURL=legacy-objFileLoader.js.map
|