The preload behavior the flagged table collections follow.
Defaults to PreloadBehavior.PreloadSelectedLocale. Flag collections for
preloading in the Editor. The flagged tables load when initialization completes and again after the selected
locale changes, so their values are available to the synchronous accessors afterwards. Without a registered
settings instance, this reads as PreloadBehavior.NoPreloading.
Additional resources: PreloadBehavior
Preload the flagged tables for the selected locale and its fallbacks.
using Unity.Localization;
namespace Unity.Localization.Samples { public class PreloadBehaviorExample { public void Configure() { LocalizationSettings.PreloadBehavior = PreloadBehavior.PreloadSelectedLocaleAndFallbacks; } } }