I am using version 71 of the library. I am trying to display an image on each face of a 3D object (made through Blender). Whether it is through different images or one image being repeated isn't important. The object is loaded through a load function after being instantiated as a JSONLoader. The following is an example of loading the json file. In this case, the shape is a cube, which has six sides. Is there a way to modify the following code to make this happen?
var loaderSix = new THREE.JSONLoader();
loaderSix.load("./resources/json/six.json", function (model) {
var materialSix = new THREE.MeshNormalMaterial();
six = new THREE.Mesh(model, materialSix);
six.translateY(1);
six.scale = new THREE.Vector3(3, 3, 3);
meshSix = THREE.SceneUtils.createMultiMaterialObject(six, materialSix);
});