Hello guys .
I have some issue whit image load texture.
var panel = BABYLON.Mesh.CreateBox("panel", 0.2, scene);
var panelMat = new BABYLON.StandardMaterial("panel1",scene);
panelMat.diffuseTexture = new BABYLON.Texture("tpanel.png", scene);
panel.material = panelMat;
panel.scaling.z = 0.1;
In developer tools always show me this :
index.html:1 : Access to Image at 'file:///C:/Users/user/Desktop/trapbox/tvorbamodelov/tpanel.png' from origin 'null' has been blocked by CORS policy: Invalid response. Origin 'null' is therefore not allowed access.
babylon.js:3 : BJS - [00:16:44]: Error while trying to load image: tpanel.png.
I am new in this and I am trying to understand how BABYLON.JS works.
Thank you in advance for your answers .