Difference between revisions of "love.gamepadpressed (日本語)"
(Created page with "{{newin (日本語)|0.9.0|090|type=関数}} ジョイスティックとして割り当てられている仮想ゲームパッドのボタンが押されたときに呼ば...") |
m (prepared.) |
||
Line 12: | Line 12: | ||
ありません。 | ありません。 | ||
− | == | + | == 用例: 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]]. | ||
+ | |||
+ | <source lang="lua"> | ||
+ | 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 | ||
+ | </source> | ||
+ | |||
+ | == 関連 == | ||
* [[parent::love (日本語)]] | * [[parent::love (日本語)]] | ||
* [[love.gamepadreleased (日本語)]] | * [[love.gamepadreleased (日本語)]] |
Revision as of 14:16, 8 July 2023
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
関連
そのほかの言語
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info