подскажите вот код добавить текстуру для прямоугольнка.
var loader = new THREE.TextureLoader();
loader.load( 'textures/land_ocean_ice_cloud_2048.jpg', function ( texture ) );
var material = new THREE.MeshBasicMaterial( { map: texture, opacity: 0.5, transparent: true });
cube3 = new THREE.Mesh( geometry, material );
cube3.rotation.y = 360 * Math.PI/180;
cube3.position.set(-50* Math.cos(cube3.rotation.y), 0, 50* Math.sin(cube3.rotation.y));
но чтото нетак. помогите.