GetAttributeCount()

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

説明

GetAttributeCount 関数は、ショーにある Attribute Definitions の総数を返します。

引数

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

戻り値

  • integer:
    ショーファイル内の Attribute Definitions の総数を返します。

この例では、返された数値を Command Line History に出力しています。

Lua
return function()
Printf("Attribute count is %i", GetAttributeCount())
end