Class AddressablesRuntimeProperties
Supports the evaluation of embedded runtime variables in addressables locations
Inheritance
Inherited Members
Namespace: UnityEngine.AddressableAssets
Syntax
public static class AddressablesRuntimeProperties
Methods
EvaluateProperty(String)
Evaluates a named property using cached values and static public fields and properties. Be aware that a field or property may be stripped if not referenced anywhere else.
Declaration
public static string EvaluateProperty(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The property name. |
Returns
Type | Description |
---|---|
System.String | The value of the property. If not found, the name is returned. |
EvaluateString(String)
Evaluates all tokens deliminated by '{' and '}' in a string and evaluates them with the EvaluateProperty method.
Declaration
public static string EvaluateString(string input)
Parameters
Type | Name | Description |
---|---|---|
System.String | input | The input string. |
Returns
Type | Description |
---|---|
System.String | The evaluated string after resolving all tokens. |
EvaluateString(String, Char, Char, Func<String, String>)
Evaluates all tokens deliminated by the specified delimiters in a string and evaluates them with the supplied method.
Declaration
public static string EvaluateString(string inputString, char startDelimiter, char endDelimiter, Func<string, string> varFunc)
Parameters
Type | Name | Description |
---|---|---|
System.String | inputString | The string to evaluate. |
System.Char | startDelimiter | The start token delimiter. |
System.Char | endDelimiter | The end token delimiter. |
Func<System.String, System.String> | varFunc | Func that has a single string parameter and returns a string. |
Returns
Type | Description |
---|---|
System.String | The evaluated string. |
SetPropertyValue(String, String)
Predefine a runtime property.
Declaration
public static void SetPropertyValue(string name, string val)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The property name. |
System.String | val | The property value. |