Enum PropertyType
Enum to specify the type of value stored in a property.
Namespace: UnityEngine.GameFoundation
Syntax
public enum PropertyType
Fields
| Name | Description | Value |
|---|---|---|
| Long | Designates a property as a Int64 value. |
0 |
| Double | Designates a property as a Double value. |
1 |
| Bool | Designates a property as a Boolean value. |
2 |
| String | Designates a property as a String value. |
3 |
| ResourcesAsset | Designates a property as an asset. |
4 |
| Addressables | Designates a property as an Addressables address value. |
5 |