Add support for variables

This commit is contained in:
WarmUpTill
2022-09-11 15:30:17 +02:00
committed by WarmUpTill
parent 3ac4e22600
commit c84c1638bf
7 changed files with 273 additions and 2 deletions

View File

@@ -503,6 +503,7 @@ void SwitcherData::loadSettings(obs_data_t *obj)
// Needs to be loaded before any entries which might rely on scene group
// selections to be available.
loadSceneGroups(obj);
loadVariables(obj);
loadMacros(obj);
loadConnections(obj);
loadWindowTitleSwitches(obj);
@@ -537,6 +538,7 @@ void SwitcherData::saveSettings(obs_data_t *obj)
saveSceneGroups(obj);
saveMacros(obj);
saveConnections(obj);
saveVariables(obj);
saveWindowTitleSwitches(obj);
saveScreenRegionSwitches(obj);
savePauseSwitches(obj);