How to scale a texture's UV 'from' the center?

If your center = [0.5;0.5], then
((UV-[0.5;0.5])*Scale)+[0.5;0.5]
Another words, you just move Center Point to [0;0], scale it and return it to its initial position.

3 Likes