Please inform how to place two or three icons on box geometry front side. Using texture able to place only one image on a side.
You can achieve this by defining a new custom geometry group. Check out the following live example for more details:
https://jsfiddle.net/prh802f9/
Groups enable the usage of multiple materials. An instance of BoxBufferGeometry
has six groups by default since it is possible to render each side with a different material. If you add an additional group, you can render a single side with multiple materials. In the demo, one side is rendered with two materials using two textures.
Thank you very much