Hi!
I am trying to spawn in instances of a glb. My code worked fine with spheres, but now when trying to replace those with a GLB instead, there seems to be some errors loading the GLTF Model?
I get this error
Unhandled promise rejection: SyntaxError: Unexpected token '<', "<?xml vers"... is not valid json
with this code
ecs.GltfModel.set(world, entity, {
url: './assets/Moss01A.glb',
})
it says the error is at GLTFLoader.parse runtime.js
Is this because I cannot use a direct path and need a URL? How can I use a path?

