SFML community forums
Help => Graphics => Topic started by: starkhorn on February 27, 2016, 12:39:01 am
-
So I have a collection of 2D image which are essentially regions of Europe. i.e. one image for Ireland, another for France etc.
I can load these as a vector of textures, set a sprite to use these textures and I can draw them perfectly fine.
However the image looks like it is shown directly above each region. What I am aiming is to change the perspective so it looks like the map is sitting on a table, so it looks like a board-game sitting on a table. I see in GIMP there is a perspective tool but I am finding it a bit hard to get exact look for each individual region. (I've over 50-60 images to change).
So I was wondering if there was some easy way to change/stretch the sprite so that the perspective changes.
-
sounds like some direct opengl code for 3D. :P
-
Or you could take a look at Hapax's Sprite 3D (https://github.com/Hapaxia/SelbaWard/wiki/Sprite-3D), but even then you'll have to figure out the perspective for each image, so you'll have to ask yourself if it isn't easier to just do it in GIMP after all. ;)
-
Thanks for mentioning that, eXpl0it3r :)
With Sprite 3D, if you set the origins to match globally:
(http://i.imgur.com/lzSSS8a.png)
(all objects have their origin set at where the green circle is at the bottom - origins don't have to be within the bounds of their object)
then, rotate causes them to all rotate around that same point:
(http://i.imgur.com/54JJ91S.png)
Additionally, you have the option of specifying an origin's z position too, which can be useful to create depth after rotation.