ResolveKeyName(SharedTableData)
Resolves this reference to a key name using the given shared table data.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Method
- Namespace: Unity.Localization
- Assembly: UnityEngine.LocalizationRuntimeModule
public string ResolveKeyName(SharedTableData sharedData)
Parameters
The shared table data to resolve the key against.
Returns
Type | Description |
|---|---|
| string | The resolved key text, or null when the reference cannot be resolved. |
Remarks
When the reference already holds key text, that text is returned directly. When it holds a key id, the name is looked up in . Returns null when the reference is empty, or when the id is not present in .
sharedDatasharedDataResolve an entry reference to its human-readable key text.
Examples
using Unity.Localization;namespace Unity.Localization.Samples{ public class TableEntryReferenceResolveKeyNameExample { public string Run(TableEntryReference entryReference, SharedTableData sharedData) => entryReference.ResolveKeyName(sharedData); }}