Hello,
so I am trying to create a 2D game in Unity using pixel art. My problem is that I don’t know how I can make sure that my sprite assets stay the same size when they are dragged into the scene? They stay the same size after they’ve been imported to Unity, of course. I’ve changed their filtering mode to “Point” as I should.
Here is how it looks now, in a web player (external link):
http://svejderud.se/unity/
Here is what the original sprite looks like:

Here is a comparison with the original sprite as it is, and how it looks in the scene view:

As you can see, the sprite has changed size and has distorted the pixel graphics so that it looks just awful.
The problem, as I see it, lies on the orthrographic camera, and its size value. Our game screen will always have fixed resolution of 900x580, and our target platform is Web Player. But how do I know/calculate what value I should insert into the camera’s orthrographic Size?
Trial and error approach doesnt work, and is not how it should be solved. I feel there has to be some way to calculate this based off the game resolution or something? My current value is some arbritrary value I experimented with, which as you can see on the images, clearly does not work.