Difference between revisions of "Tactile (日本語)"
m (Adding keyword.) |
m (Added: Other Languages) |
||
Line 22: | Line 22: | ||
</source> | </source> | ||
− | |||
{{#set:LOVE Version=0.10.x}} | {{#set:LOVE Version=0.10.x}} | ||
{{#set:Description=柔軟かつ良質な入力ライブラリ。}} | {{#set:Description=柔軟かつ良質な入力ライブラリ。}} | ||
{{#set:Keyword=Input}} | {{#set:Keyword=Input}} | ||
+ | [[Category:Libraries (日本語)]] | ||
+ | == そのほかの言語 == | ||
+ | {{i18n|Tactile}} |
Revision as of 14:27, 15 December 2019
Tactile (タクタイル) は LÖVE 用の柔軟かつ簡単な入力ライブラリであり複数の対人入力機器を管理するのに効果的です。ソースコードは GitHub から入手できます。
Control = {
Horizontal = tactile.newControl()
:addAxis(tactile.gamepadAxis(1, 'leftx'))
:addButtonPair(tactile.keys 'left', tactile.keys 'right'),
Fire = tactile.newControl()
:addButton(tactile.gamepadButtons(1, 'a'))
:addButton(tactile.keys 'x')
}
function love.update(dt)
Control.Horizontal:update()
Control.Fire:update()
player.x = player.x + player.speed * Control.Horizontal() * dt
if Control.Fire:isDown() then
player:shoot()
end
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