hello,
is there a way to see what's happening behind the editor ?

if i use keep width i can get the camera horizontal limit by dividing the size by 2
translation.x = clamp(translation.x , limit_Left + size/2, limit_Right - size/2 );
but i will loose the upper and bottom border, the only way to make the limit work vertical is by selecting keep height in the editor
Ive tried using
translation.z = clamp(translation.z , limit_Up + (size / OS.window_size.aspect()) , limit_Down - (size / OS.window_size.aspect()) );
but it doesnt work the value is never precise
Is there a way to calculate the aspect ration / Keep Height in code ?