Hello!
This is my very first question. I just started messing with SFML, so.... please be gently if I look a bit retarded
I have two Images:
-One small image composed of 5 different tiles.
-One big and empty image.
I want to make a mosaic-like image in the big one, using the tiles in the small one. The small image with the tiles have always the same size, but I want to be able, by changing the value of a constant I have in my code, to resize the tiles.
The funcion:
void copy (const Image &source, unsigned int destX, unsigned int destY, const IntRect &sourceRect=IntRect(0, 0, 0, 0), bool applyAlpha=false)
Doesn't really fit my needs, since it would just pick the 20x20 image, and paste it as a 20x20 image, and I want to paste it as a 40x40 image (for example).
Is there any way to paste a resized version of the copied image?