Struct LocalizedDatabase<TTable, TEntry>.TableEntryResult
Contains the results of a request. The found entry and the table the entry was found in, this may be different if a fall back occurred.
Namespace: UnityEngine.Localization.Settings
Syntax
public struct TableEntryResult
Properties
Entry
The entry that was resolved or null
if one could not be found.
Declaration
public readonly TEntry Entry { get; }
Property Value
Type | Description |
---|---|
TEntry |
Table
The table the entry was extracted from. When Entry is null
, this contains the last table that was tried.
Declaration
public readonly TTable Table { get; }
Property Value
Type | Description |
---|---|
TTable |