love.gamepadpressed (日本語)

LÖVE 0.9.0 から使用可能
この関数は以前のバージョンでは非対応です。

ジョイスティックとして割り当てられている仮想ゲームパッドのボタンが押されたときに呼ばれます。

関数

概要

love.gamepadpressed( joystick, button )

引数

Joystick joystick
joystick オブジェクト。
GamepadButton button
仮想ゲームパッドのボタン。

返値

ありません。

用例: MRU ゲームパッド名の表示

Track the most recently used gamepad and print its name when it changes. See also love.joystick.getGamepadMappingString for more detailed names; especially when using love.joystick.loadGamepadMappings.

local active_joystick
function love.gamepadpressed(joystick, button)
    if joystick == active_joystick then
        return
    end
    active_joystick = joystick
    local name = joystick:getName()
    local index = joystick:getConnectedIndex()
    print(string.format("Changing active gamepad to #%d '%s'.", index, name))
end

関連



そのほかの言語