Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.8k views
in Technique[技术] by (71.8m points)

azure - Cannot find an assets path when i deploy my app

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?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

63 comments

56.6k users

...