v1.0.0
Latest
2022.3+
Enum PropertyIndex
The name of the column to index this property value under, either S#
for strings or N#
for numeric values. If an index is specified on a property, then you can use that index name in a QueryFilter
to filter results by that property. You will not be prevented from indexing multiple objects having properties with different names but the same index, but you will likely receive unexpected results from a query.
Namespace: Unity.Services.Multiplayer
Syntax
public enum PropertyIndex
Fields
Name | Description | Value |
---|---|---|
None | None. | 0 |
String1 | String index 1. | 1 |
String2 | String index 2. | 2 |
String3 | String index 3. | 3 |
String4 | String index 4. | 4 |
String5 | String index 5. | 5 |
Number1 | Number index 1. | 6 |
Number2 | Number index 2. | 7 |
Number3 | Number index 3. | 8 |
Number4 | Number index 4. | 9 |
Number5 | Number index 5. | 10 |