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

LocalizedAsset<T0>.AssetChanged

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

Occurs when the resolved asset changes, and once immediately when a handler subscribes.

Adding a handler invokes it right away with the current asset, then again whenever the selected locale changes or LocalizedAsset<T0>.RefreshAsset runs. Because loading is asynchronous, the first call arrives after the asset has loaded. Removing the last handler stops the reference from listening for locale changes.

Additional resources: LocalizedAsset<T0>.RefreshAsset, LocalizedAsset<T0>.GetLocalizedAssetAsync

<para>Swap a texture whenever the localized asset changes.</para>

using Unity.Localization;
using UnityEngine;

namespace Unity.Localization.Samples { public class LocalizedAssetChangedExample : MonoBehaviour { void OnEnable() { var targetRenderer = GetComponent<Renderer>(); var localizedTexture = new LocalizedTexture(); localizedTexture.SetReference("My Assets", "ICON"); localizedTexture.AssetChanged += texture => targetRenderer.material.mainTexture = texture; } } }