Is there a straightforward way to preload Textures and Images in ThreeJs? I currently load them all into an array using the following method:
myTextureArray.push(new THREE.ImageUtils.loadTexture('../textures/floor_red.jpg');
How can I determine if and when all Textures have been successfully loaded?
If you're curious, here is an older version link for reference:
Thank you for your assistance!