Options for preloading the table collections flagged in the Editor.
Preloading runs when localization initializes and again when the selected locale changes. Only the table
collections flagged for preloading in the Editor take part; everything else loads on first use. Set the behavior
through LocalizationSettings.PreloadBehavior.
Additional resources: LocalizationSettings, ResourceDatabase
using Unity.Localization;
namespace Unity.Localization.Samples { public class PreloadBehaviorExample { public void Configure() { LocalizationSettings.PreloadBehavior = PreloadBehavior.PreloadSelectedLocaleAndFallbacks; } } }
| Property | Description |
|---|---|
| NoPreloading | Nothing preloads; every table loads on first use. |
| PreloadSelectedLocale | The flagged tables preload for the selected locale. |
| PreloadSelectedLocaleAndFallbacks | The flagged tables preload for the selected locale and every locale in its fallback chain. |
| PreloadAllLocales | The flagged tables preload for every enabled locale. |