Difference between revisions of "love.displayrotated"

m
m (Move subcategory to Window.)
 
Line 29: Line 29:
 
[[Category:Callbacks]]
 
[[Category:Callbacks]]
 
{{#set:Description=Called when the device display orientation changed.}}
 
{{#set:Description=Called when the device display orientation changed.}}
{{#set:Subcategory=General}}
+
{{#set:Subcategory=Window}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|love.displayrotated}}
 
{{i18n|love.displayrotated}}

Latest revision as of 04:47, 18 December 2022

Available since LÖVE 11.3
This callback is not supported in earlier versions.

Called when the device display orientation changed, for example, user rotated their phone 180 degrees.

O.png Prior to 11.4, the orientation value was boolean instead of one of valid DisplayOrientation values! See below for workaround.  


Function

Synopsis

love.displayrotated( index, orientation )

Arguments

number index
The index of the display that changed orientation.
DisplayOrientation orientation
The new orientation.

Returns

Nothing.

Workaround

Due to a bug in LOVE 11.3, the orientation value is boolean true instead. A workaround is as follows:

function love.displayrotated(index, orientation)
    orientation = love.window.getDisplayOrientation(index)
    -- The rest of your code goes here.
end

See Also


Other Languages