Difference between revisions of "love.displayrotated"

(displayrotated wrong values)
m (Move subcategory to Window.)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
 
{{newin|[[11.3]]|113|type=callback}}
 
{{newin|[[11.3]]|113|type=callback}}
 
Called when the device display orientation changed, for example, user rotated their phone 180 degrees.
 
Called when the device display orientation changed, for example, user rotated their phone 180 degrees.
{{notice|Prior to 11.4, the orientation value was boolean instead of one of valid [[DisplayOrientation]] values! See below for workaround.}}
+
{{notice|Prior to [[11.4]], the orientation value was boolean instead of one of valid [[DisplayOrientation]] values! See below for workaround.}}
  
 
== Function ==
 
== Function ==
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