Hi all. My idea to create 2d puzzle game using Unity 3d. My question is: can I do this. You will say: of course man it is Unity. But!
The main my problem is device resolution. So I have a lot of screen in png - these are my puzzle levels. I also have got pieces for this screen in png format too. And all these images have just one size (2000 x 2000 px). User can move these pieces through all screen and if pieces will intersection with place on the screen they will snap to this place. In this case PLACE this is some coordinates on screen.
For example I have 5 points (coordinates on the screen). These points are my places.
For example first place have coordinate x = 10 and y = 20.
When piece will be located around this place it can snapped to this place. But it is cool if my screen resolution on some device have value 2000 x 2000 px (for example of course - because my images have the same resolution 2000 x 2000). So in this case my scale is equal to 1 and I don’t care about any transformation for my images.
So my question is: how to choose an approach to solving this problem? I need to scale it. or I have to choose some way that which is independent of coordinates?
Thanks in advance.