GetButtonInput#

ExportMe.GetButtonInput(id)#

引数のIDに対応するキーが押されたフレームでは true 、それ以外では false を返します。
IDと対応するキーは以下の通りです。

VCIのキー名

ID

デフォルトのキーバインド

Key1

1

1キー

Key2

2

2キー

Key3

3

3キー

Key4

4

4キー

キーバインドはバーチャルキャストの設定によって変更されている可能性があります。

Parameters:

id (number) -- キーのID

Returns:

キーが押されたフレームでは true 、それ以外では false

Return type:

boolean

Example#

function update()
    -- Key1が押された場合、コンソールに表示
    if  vci.me.GetButtonInput(1) then
        print(" Key1 が押されました。")
    end
end