What is the width and height for this camera?

Can someone look at this attachment, and explain to me the match to determine the Width and Height of the viewable screen for this camera? Kinda put my self into a corner, and don’t really want to collapse the cameras down to one for this 2d game. The camera your viewing is my interface camera. The reason i need the width and height is because i’d like to move the UI elements around the screen on orientation changes.

thanks,

Well, it’s an orthographic camera with size 1. This means it’s two Unity units high. Its width will depend on your aspect ratio, simply “2 * camera.orthographicSize * camera.aspect”, also in Unity units.

Thank you Pyrian, very helpful.