Hello, I am currently writting a JSON exporter/importer and came across a problem, I cannot find a way to get access to all tables without passing their names as string or GUID, am I missing something? I assumed it would be in LocalizationSettings.StringDatabase but couldn’t find anything nor any documentation on how to get all tables.
We don’t currently have support for this although it should be possible to do it through addressables.
var localeLabel = "Locale-" + selectedLocale.Identifier;
var tables = Addressables.LoadResourceLocationsAsync(localeLabel, typeof(StringTable));
yield return tables;
Thank you for the answer!
Id like to know if there is still no support to get all the localization string tables at runtime.
We do now have support.
LocalizationSettings.StringDatabase.GetAllTables()
ty