Im trying to load a aframe model using Angular, but on calling the .obj and .mtl, all I see is a blank screen. I also get a warning on console saying 'core:a-assets:warn Asset loading timed out in 3000 ms'. I also tried putting 'a-assets timeout="10000"; but I still get the same screen and error. Any help ?
<a-asset-item id="Obj" src="../assets/scene.obj"></a-
asset-item>
<a-asset-item id="Mat" src="../assets/scene.mtl"></a-
asset-item>
<a-mixin id="model" scale="5 5 5"></a-mixin>
<a-entity mixin="model" obj-model="obj: #Obj; mtl: #Mat"></a-
entity>