HostType()

grandMA3 ユーザマニュアル » プラグイン » Lua 関数 - Object-Free API » HostType() Version 2.0

説明

HostType 関数は、プラグインが実行されるデバイスのホストタイプを返します(例: "Console"、"onPC")。

引数

この関数は、引数を受け取りません。

戻り値

  • string:
    デバイスのホストタイプを表す文字列を返します。

デバイスのホストタイプを Command Line History に出力します。

Lua
return function()
Printf("The HostType is "..HostType())
end