Closed
Description
Nature of issue?
- Found a bug (not sure if it's a bug)
Details about the bug:
- Web browser and version: Safari 13.0.3 and Chrome 79.0.3945.130
- Operating System: macOS Catalina 15.10.1
- Problem: I use a for loop like this to load images
for (let i=0;i<4;i++){
let tem = "filename"+str(i+1)+".jpg";
imageArray.push(loadImage(tem));
}
and it work good as a sketch, as an embed and being run locally. But It doesn't work on the present page (aka on editor.p5js.org/account/present/projectcode) and it return a 404 error of wrong image path.
And if I use the normal method it work well on every mode.