mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-04-19 08:37:22 -05:00
* adapt UI for i18n * add placeWidgets() helper function to ease translation * add hint about Transition Matrix plugin on Transition tab * translate * rework UI of file tab * write status of plugin to scene info file
21 lines
377 B
C
21 lines
377 B
C
#include <obs-module.h>
|
|
#include <obs-frontend-api.h>
|
|
|
|
OBS_DECLARE_MODULE()
|
|
OBS_MODULE_USE_DEFAULT_LOCALE("advanced-scene-switcher", "en-US")
|
|
|
|
void InitSceneSwitcher();
|
|
void FreeSceneSwitcher();
|
|
|
|
bool obs_module_load(void)
|
|
{
|
|
obs_frontend_push_ui_translation(obs_module_get_string);
|
|
InitSceneSwitcher();
|
|
return true;
|
|
}
|
|
|
|
void obs_module_unload(void)
|
|
{
|
|
FreeSceneSwitcher();
|
|
}
|