So, I have an assets path like this '../../../../assets/Modelos/bus_stop/scene.gltf'
.. then i have a function that basically loads this path like this
loader.load(
'../../../../assets/Modelos/bus_stop/scene.gltf',
function (gltf) {
gltf.scene.material = new THREE.MeshPhongMaterial();
gltf.scene.receiveShadow = true;
gltf.scene.castShadow = true;
this.scene.add(gltf.scene);
}.bind(this)
this works fine in a localhost. BUT. I deployed my app to azure. and it doesnt work
in my virtual machine my front end is stored like this
Image1
and what i want to load looks like this
Image2
my question is. Number1: can i make a global path to run both local and in deployed mode?
If not whats the path i can define that works in a deployed path but now locally?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…