ScriptableObject that stores a list of localized text entries. More...
Public Attributes | |
List< LocalizedStringEntry > | entries = new List<LocalizedStringEntry>() |
List of entries, each mapping a unique key to a LocalizedString. | |
ScriptableObject that stores a list of localized text entries.
Each entry contains a unique key and a LocalizedString, which holds localized versions of the string for different languages.
This asset can be referenced by the LocalizationManager to resolve text strings at runtime or in the editor.
Example:
key
: "menu.title"localizedString.values
: Add values for "English", "Spanish", etc.The LocalizationManager will use this asset to find and return the correct string.
List<LocalizedStringEntry> Backbone::LocalizedStringsData::entries = new List<LocalizedStringEntry>() |
List of entries, each mapping a unique key to a LocalizedString.