Difference between revisions of "cock.getBinded (日本語)"
(Created page with "入力装置と対応している選択中のバインディングを返します。 == 関数 == === 概要 === <source lang="Lua">device, key, inverse, delta, joystick = coc...") |
m (→関連) |
||
Line 38: | Line 38: | ||
* [[Common Organization of Controls Kit Input keys (日本語)|Common Organization of Controls Kit Input keys]] | * [[Common Organization of Controls Kit Input keys (日本語)|Common Organization of Controls Kit Input keys]] | ||
* [[Common Organization of Controls Kit Modes (日本語)|Common Organization of Controls Kit Modes]] | * [[Common Organization of Controls Kit Modes (日本語)|Common Organization of Controls Kit Modes]] | ||
− | * [[parent:Common Organization of Controls Kit Manual (日本語)|Common Organization of Controls Kit Manual]] | + | * [[parent::Common Organization of Controls Kit Manual (日本語)|Common Organization of Controls Kit Manual]] |
[[Category:Functions]] | [[Category:Functions]] | ||
* [[Common Organization of Controls Kit (日本語)|Common Organization of Controls Kit]] | * [[Common Organization of Controls Kit (日本語)|Common Organization of Controls Kit]] | ||
{{#set:Description=制御バインディングを返します。}} | {{#set:Description=制御バインディングを返します。}} | ||
+ | |||
== そのほかの言語 == | == そのほかの言語 == | ||
{{i18n|cock.getBinded}} | {{i18n|cock.getBinded}} |
Latest revision as of 06:04, 3 November 2016
入力装置と対応している選択中のバインディングを返します。
関数
概要
device, key, inverse, delta, joystick = cock.getBinded ( self, map, option )
引数
table self
- 使用するオブジェクト。
string map
- 検索をする制御マップ。
string option
- 選択制。バインディング探査するためのマップを選択します。未指定時は defaultOption へ復旧します。
返値
number device
- 入力装置の番号。
number key
- 入力キーの番号。入力装置依存の文字列である場合があります。
number inverse
- 反転方式の番号。
number delta
- デルタ方式の番号。
number joystick
- 内部ジョイスティックの番号。非ジョイスティック装置の場合は 1 になります。
関数
概要
table = cock.getBinded ( self, map, all )
引数
table self
- 使用するオブジェクト。
string map
- 検索をする制御マップ。
boolean all
- 値が "true" ならばマップに対して全ての選択値があるバインディングのテーブルを返します。
返値
table table
- マップに対してバインディングされた制御の一覧。
テーブルには以下が生成されます:
table = {
option = { "primary", "secondary", "etc."... },
device = { 1, 2, 3... },
key = { "x", 1, 5... },
inverse = { 2, 1, -2... },
delta = { 0, 1, -1... },
joystick = { 1, 1, 3 }
}
最初の副テーブルには任意順の選択値における名称が内包されています。その他すべてのテーブルにある値は最初のテーブルの選択値に相当します。
関連
- cock.bind
- Common Organization of Controls Kit Input devices
- Common Organization of Controls Kit Input keys
- Common Organization of Controls Kit Modes
- Common Organization of Controls Kit Manual
- Common Organization of Controls Kit
そのほかの言語
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