I got a small problem with uv mapping and I need it fliped on the -1 y axis.
Would I need to gather each location of uv mapping and run it though a matrix to mirror? or is there a special command in python for that?
I got a small problem with uv mapping and I need it fliped on the -1 y axis.
Would I need to gather each location of uv mapping and run it though a matrix to mirror? or is there a special command in python for that?
to mirror a coordinate around the y-axis, put a minus sign in front of the x-coordinate: (u,v) becomes (-u,v)
actrally i hate to mutiply y but -1 and +1 to it.
But thanks for the info!