|
grandMA3 ユーザマニュアル » プラグイン » Lua 関数 - Object-Free API » NeedShowSave() |
Version 2.2 |
NeedShowSave 関数は、ショーファイルに保存されていない変更があるかどうかを示す boolean 値を返します。
この関数は、引数を受け取りません。
ショーファイルを保存するかどうかを示すフィードバックを出力します。
Lua |
return function () -- Check if the show should be saved. if NeedShowSave() then Printf("You should save your showfile.") else Printf("You do not need to save your showfile.") end end |