Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


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

sharedData

The shared table data to resolve the key against.

Returns

Type

Description

stringThe 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
sharedData
. Returns null when the reference is empty, or when the id is not present in
sharedData
.
Resolve 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); }}