I am curious if setting more segments in a Geometry instance of THREE.JS
, such as:
new THREE.PlaneGeometry(1, 1, 10, 10);
You will notice that your plane is divided into 10x10 parts when wireframe mode is enabled.
Is it possible to apply various generated images (like map fragments) to each segment of a plane or another geometry object with different images?
I am interested in creating a single plane and adding multiple images to each segment to resemble a map. How can I achieve this? I am new to WebGL/THREE.JS so any guidance would be appreciated.
PS I am not talking about repeating the same texture on segments, but applying unique textures to individual segments of one geometry object.
Thank you for any advice!