So I want to texture one side with an image an the others with one solid color, how can I do that?
here is my code
const cubetexture = new
THREE.TextureLoader().load('https://i.ibb.co/Wk5XR8c/adventureboots-auto-x2.jpg');
const geometry = new THREE.BoxGeometry( 29, 20, 3 )
const material = new THREE.MeshBasicMaterial( { map: cubetexture } );
const cube = new THREE.Mesh( geometry, material );
cube.position.x = -20
scene.add(cube)