love.displayrotated (日本語)

LÖVE 11.3 から使用可能
このコールバックは以前のバージョンでは非対応です。

ユーザがデバイス (スマートフォン、タブレットなど傾きセンサー搭載機器) を180度回転した場合などディスプレイの表示方向が変更されたときに発生するコールバック関数です。

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


関数

概要

love.displayrotated( index, orientation )

引数

number index
表示方向を変更したいディスプレイのインデックス。
DisplayOrientation orientation
新しい表示方向。

返値

ありません。

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

関連



そのほかの言語