| Parameter | Description |
|---|---|
| id | The id to look up. |
string
The key text, or null when the id is absent.
Returns the key text for a stable id.
Returns null when the id is 0 or not present.
Additional resources: SharedTableData.GetId, SharedTableData.GetEntry
<para>Resolve a stable id back to its key text.</para>
using Unity.Localization; using UnityEngine;
namespace Unity.Localization.Samples { public class SharedTableDataGetKeyExample { public void Run() { var sharedData = ScriptableObject.CreateInstance<SharedTableData>(); long id = sharedData.AddKey("GREETING").Id;
string key = sharedData.GetKey(id); // GREETING Debug.Log(key); } } }