SCENARIO
In an attempt to replicate the demonstration shown here using jsfiddle, I am working on loading a series of textures with the following code:
var r = "https://github.com/timoxley/threejs/tree/master/examples/textures/cube/Park3Med/";
var urls = [
r + "px.jpg", r + "nx.jpg",
r + "py.jpg", r + "ny.jpg",
r + "pz.jpg", r + "nz.jpg"
];
My focus is solely on recreating the texture itself, not the entire model. Could there be any specific reason for why it's not functioning as expected based on my setup?