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