Save and Load State
// Save this latest state in the project.
scheduler.saveSettings(inputName, JSON.stringify(settings));// On startup, retrieve the input settings from the project.
scheduler.loadSettings(inputName, (projectSettings) => {
// Convert into a JavaScript object.
let newSettings = JSON.parse(projectSettings);
// ... apply the settings to the UI
});Last updated