Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Class in Yarn.Unity
Inherits from UnityEngine.ScriptableObject
Name | Description |
---|---|
Name | Description |
---|---|
Adds a new string to the runtime string table.
Adds a collection of strings to the runtime string table.
Adds a collection of strings to the runtime string table.
Returns a boolean value indicating whether this Localization contains a string with the given key.
Gets the line IDs present in this localization.
Gets a value indicating whether this Localization contains assets that are linked to strings.
Gets a value indicating whether this Localization makes use of Addressable Assets ( true
), or if it stores its assets as direct references ( false
).
|
|
|
|
Method in Localization
Adds a collection of strings to the runtime string table.
This method updates the localisation's runtime string table, which is useful for adding or changing the localisation during gameplay or in a built player. It doesn't modify the asset on disk, and any changes made will be lost when gameplay ends.
Name | Description |
---|---|
strings
The collection of StringTableEntry objects to add.
System.Collections.Generic.IEnumerable<Yarn.Unity.StringTableEntry>
stringTableEntries
string
key
T
value
Property in Localization
Gets a value indicating whether this Localization contains assets that are linked to strings.
Method in Localization
Returns a boolean value indicating whether this Localization contains a string with the given key.
Name | Description |
---|---|
true
if this Localization has a string for the given key; false
otherwise.
string
key
The key to search for.
string
key
string
key
Property in Localization
Gets a value indicating whether this Localization makes use of Addressable Assets ( true
), or if it stores its assets as direct references ( false
).
If this property is true
, Yarn.Unity.Localization.GetLocalizedObject1(System.String)</code> and <code>Yarn.Unity.Localization.ContainsLocalizedObject1(System.String)
should not be used to retrieve localised objects. Instead, the Addressable Assets API should be used.
Method in Localization
Adds a new string to the runtime string table.
This method updates the localisation's runtime string table, which is useful for adding or changing the localisation during gameplay or in a built player. It doesn't modify the asset on disk, and any changes made will be lost when gameplay ends.
Name | Description |
---|---|
string
key
The key for this string (generally, the line ID.)
string
value
The user-facing text for this string, in the language specified by LocaleCode .
Method in Localization
Adds a collection of strings to the runtime string table.
This method updates the localisation's runtime string table, which is useful for adding or changing the localisation during gameplay or in a built player. It doesn't modify the asset on disk, and any changes made will be lost when gameplay ends.
Name | Description |
---|---|
System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, string>>
strings
The collection of keys and strings to add.