Is there a simpler way to use DDS cubemaps in three.js for scene backgrounds (or skyboxes) instead of exploding them into six images and loading with THREE.CubeTextureLoader()? Something like this:
var skybox = new THREE.TextureLoader().load('/files/skybox.dds');
scene.background = skybox;