Within the context of a collection, a data parameter address represents the location at which to find the desired data parameter. An address can be a simple name, a path with many parts, an index or all at once.
To access a value deeper within a collection, the dot operator ( . ) is used.
To access an element of a data parameter array, an indexer ( [ ] ) is used
Data parameter addresses are case insensitive. A collection can only contain one value per address with no duplicate addresses.
Some examples:
To access a "Money" data parameter the path would simply be:
"Money"To access a "Money" data parameter within a collection "Player Parameters" the path would be:
"Player Parameters.Money"To access the first element of a "Money" data parameter array within the "Player Parameters" collection, the path would be:
"Player Parameters.Money[0]"