Skip to main content

The "camera_get_view_bbox_bottom" Function

Syntax#

camera_get_view_bbox_bottom(camera);
ArgumentTypeDescription
cameracameraThe camera index to check (typically view_camera[#])

Description#

Returns the height in pixels of the bottom bounding box (or letterbox) of a camera, if it is currently assigned to a view. This value is relative to the base height defined in config, and is useful for managing non-scaled, centered content within a scaled viewport. If the camera is not assigned to a view, 0 will be returned instead.

Note that this does not measure space outside the view when min/max aspect ratios are employed, but rather the space inside a scaled view relative to an unscaled view.

Example#

draw_rectangle(0, camera_get_view_bbox_bottom(), view_width, view_height, false);