How to flip a Three.js texture horizontally

To flip a texture horizontally, you can do the following:

texture.wrapS = THREE.RepeatWrapping;
texture.repeat.x = - 1;

three.js r.147

Leave a Comment