Class SharedTableData.SharedTableEntry
A entry in the SharedTableData. Contains the unique id, the name of the key and optional Metadata.
Namespace: UnityEngine.Localization.Tables
Syntax
public class SharedTableEntry : object
Properties
Id
Unique id(to this SharedTableData).
Declaration
public long Id { get; }
Property Value
Type | Description |
---|---|
Int64 |
Key
The name of the key, must also be unique.
Declaration
public string Key { get; }
Property Value
Type | Description |
---|---|
String |
Metadata
Optional Metadata for this key that is also shared between all tables that use this SharedTableData.
Declaration
public MetadataCollection Metadata { get; set; }
Property Value
Type | Description |
---|---|
MetadataCollection |