#Get Phone Aspect Ratio
1 messages · Page 1 of 1 (latest)
Screen.height / (float)Screen.width
Okay so by doing Screen.width you get the value?
Screen.width is the width of the screen in pixels
otherwise you are dividing an int by an int, so you get an int, which you don't want
An int is a whole number if you didn't know that
okay thanks