Loading Unity exported mesh in typescript project (vanilla ts created using vite)

hi,
I had success in loading unity exported glb files in normal js project using scripts and codes from the unity exported generated html files.
But when i tried to standardize my project by building and vanilla typescript project using babylon js there are a lot of problems. I understand that babylon.manager is handling the extra things for loading the model or scene.
The project is a vanilla ts project created using vite. When i try to run the project i am getting:

Uncaught TypeError: e.Observable is not a constructor  - from babylon.manager.js

My imports are as follows:

import {
  Engine,
  Scene,
  Vector3,
  ILoadingScreen,
  SceneLoader,
  Color4,
  CubeTexture,
  ArcRotateCamera,
  PBRMaterial,
  Mesh,
} from "@babylonjs/core";
import "@babylonjs/materials";
import "@babylonjs/loaders";
import "./babylon.manager";

babylon.manager.js, and babylon.manager.d.ts are in the root of src directory.
I am not an expert in these projects please help

Thanks in advance

Lets add @MackeyK24 the daddy of the Unity Exporter to the thread so that he can help :slight_smile:

1 Like

Babylon.manager.js is designed to work by loading via script tag on the host page.

Not sure how you would load it any other context

2 Likes

I thought it was so. i have modified the apps to load it via script and its working. Good work with the babylon unity exporter.