Class AddressablesRuntimeProperties
Supports the evaluation of embedded runtime variables in addressables locations
Inherited Members
Namespace: UnityEngine.AddressableAssets.Initialization
Assembly: Unity.Addressables.dll
Syntax
public static class AddressablesRuntimeProperties
  Methods
| Name | Description | 
|---|---|
| ClearCachedPropertyValues() | This will clear all PropertyValues that have been cached. This includes all values set by SetPropertyValue(string, string) as well as any reflection-evaluated properties.  | 
      
| 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.  | 
      
| EvaluateString(string) | Evaluates all tokens deliminated by '{' and '}' in a string and evaluates them with the EvaluateProperty method.  | 
      
| 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.  | 
      
| SetPropertyValue(string, string) | Predefine a runtime property.  |