setGlobalSettings - mononok/FlightSims GitHub Wiki
このactionのGlobalデータを保存する。
データは、macOSではキーチェインに、WindowsではCredentialStoreに保存する。
var json = {
"event": "setGlobalSettings",
"context": opaqueValue,
"payload": {<json data>}
};
メンバー | 説明 |
---|---|
event | setGlobalSettings |
context | An opaque value identifying the plugin (inPluginUUID) or the Property Inspector (inPropertyInspectorUUID). This value is received during the Registration procedure. |
payload | jsonオブジェクト |
この関数をプラグインが呼び出した場合、自動的にPropertyInspectorは、新しい設定情報と共に didReceiveGlobalSettings イベントを受け取る。
同様に、この関数をPropertyInspectorが呼び出した場合、自動的にプラグインは、新しい設定情報と共に didReceiveGlobalSettings イベントを受け取る。
StreamDeck4.1から利用可能となる。