Easy way to configure size of an othographic camera?

hi! actually i’m on a platformer 2d. How can I set the size of my camera in keeping with the size of my leve? for exemple my level is build with 32x32 tiles, and this is a 10 tiles by 10 tiles level… how can i made my camera to show exactly 320 by 320 pyxel?

I would import your tile sprites at 32 pixels per unit. That would make each tile 1 unit in size.

A camera’s orthographic size is half of the vertical size of the viewing volume, so the orthographic size should be 5 to accommodate 10 units of height.

hi thx !
so when i work with a tileset , i import the entire tilest with 1 unit size?
is it working also with a “standart” pixel perfect camera script?