Interface ITrackedPropertyValue<T>
Interface for accessing a tracked property`s values.
Namespace: UnityEngine.Localization.PropertyVariants.TrackedProperties
Assembly: Unity.Localization.dll
Syntax
public interface ITrackedPropertyValue<T> : ITrackedProperty
Type Parameters
Name | Description |
---|---|
T | The property data type. |
Methods
Name | Description |
---|---|
GetValue(LocaleIdentifier, LocaleIdentifier, out T) | Attempts to find a value for the provided LocaleIdentifier or fallback. |
GetValue(LocaleIdentifier, out T) | Attempts to find a value for the provided LocaleIdentifier. |
SetValue(LocaleIdentifier, T) | Assigns a value for the chosen LocaleIdentifier. |