Version: Unity 6.7 Beta (6000.7)
LanguageEnglish
  • C#

PreloadBehavior

enumeration

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

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; } } }

Properties

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.