Skip to main content

The "display_get_bbox_right" Function

Syntax#

display_get_bbox_right();
ArgumentTypeDescription
N/AN/ANo arguments

Description#

Android/iOS only. Returns the width in pixels of the right bounding box (or pillarbox) of a display with one or more cutouts (aka "notch" or "hole-punch"). Will return 0 on other displays.

Note that bounding box will change depending on device orientation. This function will always return the value for the right side of the display relative to the user's perspective.

Example#

var str = "Hello, world!";
var sx = display_get_width() - display_get_bbox_right() - string_width(str);
var sy = 50;
draw_text(sx, sy, str);