Application:getLogicalBounds

From GiderosMobile
Revision as of 17:54, 12 July 2023 by Hgy29 (talk | contribs) (Text replacement - "<source" to "<syntaxhighlight")

Available since: Gideros 2017.11.3
Class: Application

Description

Returns the minimum and maximum logical space coordinates to cover full screen. <syntaxhighlight lang="lua"> minX, minY, maxX, maxY = application:getLogicalBounds() </source>

Return values

Returns (number) minimum x
Returns (number) minimum y
Returns (number) maximum x
Returns (number) maximum y

Example

<syntaxhighlight lang="lua"> -- screen size as global variables myappleft, myapptop, myappright, myappbot = application:getLogicalBounds() myappwidth, myappheight = myappright - myappleft, myappbot - myapptop print("app left", myappleft, "app top", myapptop, "app right", myappright, "app bot", myappbot) print("app width", myappwidth, "app height", myappheight) </source>