- Home /
variable screen resolution sprite not scaling
Hi, I am trying to make 1st game in unity. I need to support different resolutions of android and iOS. The problem is when i place the background image for any one res ex. 1536x2048. It doesn't displays properly for 640x960. The screen size is varying, but sprites and bg sprite is not scaling as per res.
I am not clear how to acheive it. But, it must be a basic thing as there are so many games on android and all phones have different res. and dpi.
There should be some formula or we just need to set orthographic.size for this. I am using this : // to calc size Camera.main.orthographicSize = Screen.currentResolution.height / (2*70); // Camera.main.orthographicSize = Screen.currentResolution.height / 2; Debug.Log("Camera size :" + Camera.main.orthographicSize); Debug.Log("Width : " + Screen.currentResolution.width + " height : " + Screen.currentResolution.height); // this doesnt give me width and height as per resolution of screen for ex. for 1536x2048 -> i get, Width : 1366 height : 768
i found this as similar question http://forum.unity3d.com/threads/orthographic-screen-size.113641/ but it didnt help, whereas problem is nearly same.
If somebody can share how to get correct screen resolution by code and how to set width of bg sprite and other sprite, it can solve the problem OR
if there is some setting which takes the default scene and scales automatically for various resolution. it will help.
You may want to check this.
http://answers.unity3d.com/questions/862249/stretching-background-sprite.html